aboutsummaryrefslogtreecommitdiff
path: root/include/rssfuncs.php
diff options
context:
space:
mode:
authorAndrew Dolgov <noreply@fakecake.org>2015-08-11 09:05:39 +0300
committerAndrew Dolgov <noreply@fakecake.org>2015-08-11 09:05:39 +0300
commit023737c75697d176b02c1e150f9406e6a1a8fd8b (patch)
tree3f75fa3f0f882b52bb6b8163cf3f68c3eec5ec76 /include/rssfuncs.php
parent837443630f5aeb25d34cd93d7a7d63442e8ae2b6 (diff)
parent1f6732b245c9ea77bca9415653d2c993a02c8ca4 (diff)
Merge branch 'master' of git.fakecake.org:tt-rss
Diffstat (limited to 'include/rssfuncs.php')
-rw-r--r--include/rssfuncs.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/rssfuncs.php b/include/rssfuncs.php
index c8e2ce28f..6532fb270 100644
--- a/include/rssfuncs.php
+++ b/include/rssfuncs.php
@@ -796,7 +796,7 @@
$entry_content = db_escape_string($entry_content, false);
- db_query("BEGIN");
+ //db_query("BEGIN");
$result = db_query("SELECT id FROM ttrss_entries
WHERE (guid = '$entry_guid' OR guid = '$entry_guid_hashed')");
@@ -889,7 +889,7 @@
}
if (find_article_filter($article_filters, "filter")) {
- db_query("COMMIT"); // close transaction in progress
+ //db_query("COMMIT"); // close transaction in progress
continue;
}
@@ -1020,7 +1020,7 @@
}
}
- db_query("COMMIT");
+ //db_query("COMMIT");
_debug("assigning labels [other]...", $debug_enabled);
@@ -1054,7 +1054,7 @@
print_r($enclosures);
}
- db_query("BEGIN");
+ //db_query("BEGIN");
// debugging
// db_query("DELETE FROM ttrss_enclosures WHERE post_id = '$entry_ref_id'");
@@ -1077,7 +1077,7 @@
}
}
- db_query("COMMIT");
+ //db_query("COMMIT");
// check for manual tags (we have to do it here since they're loaded from filters)
@@ -1121,7 +1121,7 @@
if (count($filtered_tags) > 0) {
- db_query("BEGIN");
+ //db_query("BEGIN");
foreach ($filtered_tags as $tag) {
@@ -1154,7 +1154,7 @@
SET tag_cache = '$tags_str' WHERE ref_id = '$entry_ref_id'
AND owner_uid = $owner_uid");
- db_query("COMMIT");
+ //db_query("COMMIT");
}
_debug("article processed", $debug_enabled);