summaryrefslogtreecommitdiff
path: root/classes/rpc.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-03-28 20:44:43 +0400
committerAndrew Dolgov <[email protected]>2013-03-28 20:44:43 +0400
commitb9a06a0e39739b1d810bbb78bc1eef05f7d095cf (patch)
tree4459d9f95bb23562a54a4fafc5c030c26d7a5eeb /classes/rpc.php
parent699e3cfc65174ba531401c2689f6b2074546bb34 (diff)
retire frankly ridiculous sorting by score/title/date/default
keep defaul and oldest first instead of REVERSE_HEADLINES
Diffstat (limited to 'classes/rpc.php')
-rw-r--r--classes/rpc.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/classes/rpc.php b/classes/rpc.php
index 72028759e..66bdb86b0 100644
--- a/classes/rpc.php
+++ b/classes/rpc.php
@@ -544,9 +544,8 @@ class RPC extends Handler_Protected {
function catchupFeed() {
$feed_id = db_escape_string($this->link, $_REQUEST['feed_id']);
$is_cat = db_escape_string($this->link, $_REQUEST['is_cat']) == "true";
- $max_id = (int) db_escape_string($this->link, $_REQUEST['max_id']);
- catchup_feed($this->link, $feed_id, $is_cat, false, $max_id);
+ catchup_feed($this->link, $feed_id, $is_cat, false);
print json_encode(array("message" => "UPDATE_COUNTERS"));
}