summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-08-23 12:17:09 +0100
committerAndrew Dolgov <[email protected]>2005-08-23 12:17:09 +0100
commitf48ba3c9e4c36e46a4769042876014e8f91eabb5 (patch)
tree3ed4d11facbf07a414b3abe6e32eee45db16cdd1 /functions.php
parent466001c4fabb43a86b4366b2790169b5377f7d51 (diff)
headline update uses transactions once again
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php9
1 files changed, 6 insertions, 3 deletions
diff --git a/functions.php b/functions.php
index f97e958df..355bc1a97 100644
--- a/functions.php
+++ b/functions.php
@@ -31,6 +31,7 @@
$rss = fetch_rss($feed_url);
error_reporting (E_ERROR | E_WARNING | E_PARSE);
+ pg_query("BEGIN");
if ($rss) {
@@ -146,9 +147,9 @@
$last_read_qpart = 'last_read = null,';
}
- if ($orig_timestamp < $entry_timestamp) {
- $last_read_qpart = 'last_read = null,';
- }
+// if ($orig_timestamp < $entry_timestamp) {
+// $last_read_qpart = 'last_read = null,';
+// }
$entry_content = pg_escape_string($entry_content);
$entry_title = pg_escape_string($entry_title);
@@ -176,6 +177,8 @@
}
+ pg_query("COMMIT");
+
}