summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-11-23 12:50:25 +0400
committerAndrew Dolgov <[email protected]>2011-11-23 12:50:25 +0400
commit5b54efce2f6634ce1ab4a5f6641c33a97aa3d19e (patch)
treea5ebf8e4952479b8f45c864791264410dcfcbdd3
parent2ea7ee5a35f70f6916a474438b62e0adb5d36bda (diff)
fix sql error in pubsub handler (closes #393)
-rw-r--r--functions.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/functions.php b/functions.php
index 730b20c86..0f910f2f7 100644
--- a/functions.php
+++ b/functions.php
@@ -7688,8 +7688,7 @@
db_query($link, "UPDATE ttrss_feeds SET
last_update_started = '1970-01-01',
- last_updated = '1970-01-01' WHERE id = '$feed_id' AND
- owner_uid = ".$_SESSION["uid"]);
+ last_updated = '1970-01-01' WHERE id = '$feed_id'");
}
} else {