summaryrefslogtreecommitdiff
path: root/api
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-07-21 19:12:32 +0400
committerAndrew Dolgov <[email protected]>2010-07-21 19:12:32 +0400
commit423e6e55d7c022e1efa1f171fd5c09caf8f01518 (patch)
tree49798f123a12eebfc150ccebff56296a33464dec /api
parent2f0903a62572315e43960fb1ec33c18f7b2a56f9 (diff)
api: fix catchupFeed
Diffstat (limited to 'api')
-rw-r--r--api/index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/index.php b/api/index.php
index c0bc79963..64e9741a3 100644
--- a/api/index.php
+++ b/api/index.php
@@ -392,7 +392,7 @@
$feed_id = db_escape_string($_REQUEST["feed_id"]);
$is_cat = db_escape_string($_REQUEST["category"]);
- catchup_feed($link, $feed, $is_cat);
+ catchup_feed($link, $feed_id, $is_cat);
print json_encode(array("status" => "OK"));