summaryrefslogtreecommitdiff
path: root/mobile/classic/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'mobile/classic/index.php')
-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;