diff --git a/functions.php b/functions.php index 48ab664c8..5ec459fa8 100644 --- a/functions.php +++ b/functions.php @@ -120,7 +120,11 @@ @$config->set('HTML', 'Allowed', $allowed); $config->set('Output.FlashCompat', true); $config->set('Attr.EnableID', true); - @$config->set('Cache', 'SerializerPath', CACHE_DIR . "/htmlpurifier"); + if (!defined('MOBILE_VERSION')) { + @$config->set('Cache', 'SerializerPath', CACHE_DIR . "/htmlpurifier"); + } else { + @$config->set('Cache', 'SerializerPath', "../" . CACHE_DIR . "/htmlpurifier"); + } $purifier = new HTMLPurifier($config); diff --git a/mobile/backend.php b/mobile/backend.php index 85018c580..2e473a375 100644 --- a/mobile/backend.php +++ b/mobile/backend.php @@ -7,11 +7,11 @@ require_once "../config.php"; require_once "functions.php"; - require_once "../functions.php"; + require_once "../functions.php"; require_once "../sessions.php"; - require_once "../version.php"; + require_once "../version.php"; require_once "../db-prefs.php"; $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME); @@ -35,6 +35,13 @@ publishArticlesById($link, array($id), $cmode); break; + case "toggleUnread": + $cmode = db_escape_string($_REQUEST["unread"]); + $id = db_escape_string($_REQUEST["id"]); + + catchupArticlesById($link, array($id), $cmode); + break; + case "setPref": $id = db_escape_string($_REQUEST["id"]); $value = db_escape_string($_REQUEST["to"]); diff --git a/mobile/functions.php b/mobile/functions.php index eb523d710..e84be9342 100644 --- a/mobile/functions.php +++ b/mobile/functions.php @@ -339,7 +339,7 @@ $qfh_ret = queryFeedHeadlines($link, $feed_id, $limit, $view_mode, $is_cat, $search, $search_mode, $match_on, - "unread DESC, updated, score", $offset); + "score DESC, date_entered DESC", $offset); $result = $qfh_ret[0]; $feed_title = $qfh_ret[1]; @@ -523,6 +523,12 @@