summaryrefslogtreecommitdiff
path: root/mobile
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2009-12-24 15:36:02 +0300
committerAndrew Dolgov <[email protected]>2009-12-24 15:36:02 +0300
commit7f969260c1845d76b223197fd4392dd1576d548e (patch)
tree29b10fed579ce6594927ecfebccd4d25a16c5ee2 /mobile
parentfe430670ab156355869125fefe3b3e7a0cf2cf9e (diff)
add toggle_collapse_cat()
Diffstat (limited to 'mobile')
-rw-r--r--mobile/classic/index.php29
1 files changed, 1 insertions, 28 deletions
diff --git a/mobile/classic/index.php b/mobile/classic/index.php
index 4b158395b..260095b26 100644
--- a/mobile/classic/index.php
+++ b/mobile/classic/index.php
@@ -26,34 +26,7 @@
if ($subop == "tc" && !$go) {
$cat_id = db_escape_string($_GET["id"]);
-
- if ($cat_id > 0) {
- db_query($link, "UPDATE ttrss_feed_categories SET
- collapsed = NOT collapsed WHERE id = '$cat_id' AND owner_uid = " .
- $_SESSION["uid"]);
- } else {
- $pref_name = '';
-
- switch ($cat_id) {
- case -1:
- $pref_name = '_COLLAPSED_SPECIAL';
- break;
- case -2:
- $pref_name = '_COLLAPSED_LABELS';
- break;
- case 0:
- $pref_name = '_COLLAPSED_UNCAT';
- break;
- }
-
- if ($pref_name) {
- if (get_pref($link, $pref_name)) {
- set_pref($link, $pref_name, 'false');
- } else {
- set_pref($link, $pref_name, 'true');
- }
- }
- }
+ toggle_collapse_cat($link, $cat_id);
header("Location: index.php");
return;