From: Andrew Dolgov Date: Sat, 26 Nov 2005 12:31:34 +0000 (+0100) Subject: prevent disabled rows to be selected by selectall X-Git-Tag: schema_feature_freeze_for_1.1~75 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=53226edc0d70e85e27d3318750a236ea2ed89ddf;p=tt-rss.git prevent disabled rows to be selected by selectall --- diff --git a/backend.php b/backend.php index 79b016f3..f8b5c703 100644 --- a/backend.php +++ b/backend.php @@ -1260,9 +1260,12 @@ if ($subop == "edit" && $feed_id != $edit_feed_id) { $class .= "Grayed"; + $this_row_id = ""; + } else { + $this_row_id = "id=\"FEEDR-$feed_id\""; } - print ""; + print ""; $icon_file = ICONS_DIR . "/$feed_id.ico"; @@ -1478,9 +1481,12 @@ if ($subop == "editCat" && $cat_id != $edit_cat_id) { $class .= "Grayed"; + $this_row_id = ""; + } else { + $this_row_id = "id=\"FCATR-$cat_id\""; } - print ""; + print ""; $edit_title = htmlspecialchars(db_unescape_string($line["title"])); @@ -1685,9 +1691,12 @@ if ($subop == "edit" && $filter_id != $edit_filter_id) { $class .= "Grayed"; + $this_row_id = ""; + } else { + $this_row_id = "id=\"FILRR-$filter_id\""; } - print ""; + print ""; $line["regexp"] = htmlspecialchars($line["reg_exp"]); $line["description"] = htmlspecialchars($line["description"]); @@ -1945,9 +1954,12 @@ if ($subop == "edit" && $label_id != $edit_label_id) { $class .= "Grayed"; + $this_row_id = ""; + } else { + $this_row_id = "id=\"LILRR-$label_id\""; } - print ""; + print ""; $line["sql_exp"] = htmlspecialchars($line["sql_exp"]); $line["description"] = htmlspecialchars($line["description"]); @@ -2617,9 +2629,12 @@ if ($uid == $_SESSION["uid"] || ($subop == "edit" && $uid != $edit_uid)) { $class .= "Grayed"; - } - - print ""; + $this_row_id = ""; + } else { + $this_row_id = "id=\"UMRR-$uid\""; + } + + print ""; $line["login"] = htmlspecialchars($line["login"]);