summaryrefslogtreecommitdiff
path: root/modules/pref-labels.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules/pref-labels.php')
-rw-r--r--modules/pref-labels.php22
1 files changed, 1 insertions, 21 deletions
diff --git a/modules/pref-labels.php b/modules/pref-labels.php
index 797d2de3f..c645b12a1 100644
--- a/modules/pref-labels.php
+++ b/modules/pref-labels.php
@@ -50,30 +50,10 @@
$ids = split(",", db_escape_string($_GET["ids"]));
- db_query($link, "BEGIN");
-
foreach ($ids as $id) {
- $result = db_query($link, "SELECT caption FROM ttrss_labels2
- WHERE id = '$id'");
-
- $caption = db_fetch_result($result, 0, "caption");
-
- $result = db_query($link, "DELETE FROM ttrss_labels2 WHERE id = '$id'
- AND owner_uid = " . $_SESSION["uid"]);
-
- if (db_affected_rows($link, $result) != 0 && $caption) {
-
- /* Disable filters that reference label being removed */
-
- db_query($link, "UPDATE ttrss_filters SET
- enabled = false WHERE action_param = '$caption'
- AND action_id = 7
- AND owner_uid = " . $_SESSION["uid"]);
- }
+ label_remove($link, $id, $_SESSION["uid"]);
}
- db_query($link, "COMMIT");
-
}
if ($subop == "add") {