summaryrefslogtreecommitdiff
path: root/modules/backend-rpc.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2009-12-24 15:25:06 +0300
committerAndrew Dolgov <[email protected]>2009-12-24 15:25:06 +0300
commit57937c42b99d94a4046986bbfb59fdf8d765408a (patch)
tree7e2ea1b319101915806c36ea76b84c4022bceed3 /modules/backend-rpc.php
parent44258fa967a8804a80d84ebd845a8668c18ca890 (diff)
obsolete cookie storage for collapsed status of feedlist and special categories (bump schema)
Diffstat (limited to 'modules/backend-rpc.php')
-rw-r--r--modules/backend-rpc.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/backend-rpc.php b/modules/backend-rpc.php
index 1a65efc02..686602d6f 100644
--- a/modules/backend-rpc.php
+++ b/modules/backend-rpc.php
@@ -633,17 +633,17 @@
ttrss_feed_categories WHERE owner_uid = ".$_SESSION["uid"]);
print "<category id=\"0\" collapsed=\"".
- (int)$_COOKIE["ttrss_vf_uclps"]."\"><![CDATA[";
+ (int)get_pref($link, "_COLLAPSED_UNCAT")."\"><![CDATA[";
print __("Uncategorized");
print "]]></category>";
print "<category id=\"-1\" collapsed=\"".
- (int)$_COOKIE["ttrss_vf_vclps"]."\"><![CDATA[";
+ (int)get_pref($link, "_COLLAPSED_SPECIAL")."\"><![CDATA[";
print __("Special");
print "]]></category>";
print "<category id=\"-2\" collapsed=\"".
- (int)$_COOKIE["ttrss_vf_lclps"]."\"><![CDATA[";
+ (int)get_pref($link, "_COLLAPSED_LABELS")."\"><![CDATA[";
print __("Labels");
print "]]></category>";