From 048701937d52423fc4218652597d321153acd72c Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 11 Feb 2009 13:35:24 +0300 Subject: offline: add progress indicator; tweak download intervals and amount of articles --- modules/backend-rpc.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'modules/backend-rpc.php') diff --git a/modules/backend-rpc.php b/modules/backend-rpc.php index 6bae380a1..3a63c6094 100644 --- a/modules/backend-rpc.php +++ b/modules/backend-rpc.php @@ -516,14 +516,14 @@ if ($subop == "download") { $stage = (int) $_REQUEST["stage"]; - $cidt = db_escape_string($_REQUEST["cidt"]); - $cidb = db_escape_string($_REQUEST["cidb"]); + $cidt = (int)db_escape_string($_REQUEST["cidt"]); + $cidb = (int)db_escape_string($_REQUEST["cidb"]); $sync = db_escape_string($_REQUEST["sync"]); //$amount = (int) $_REQUEST["amount"]; //$unread_only = db_escape_string($_REQUEST["unread_only"]); //if (!$amount) $amount = 50; - $amount = 100; + $amount = 2000; $unread_only = true; print ""; @@ -653,7 +653,7 @@ if ($stage > 0) { print ""; - $limit = 50; + $limit = 200; $skip = $limit*($stage-1); print ""; @@ -669,7 +669,7 @@ } if ($cidt && $cidb) { - $cid_qpart = "(id > $cidt OR id < $cidb) AND "; + $cid_qpart = "(ttrss_entries.id > $cidt OR ttrss_entries.id < $cidb) AND "; } if (DB_TYPE == "pgsql") { -- cgit v1.2.3