summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/pref-feeds.php11
1 files changed, 7 insertions, 4 deletions
diff --git a/modules/pref-feeds.php b/modules/pref-feeds.php
index 46b03e891..7e5868aed 100644
--- a/modules/pref-feeds.php
+++ b/modules/pref-feeds.php
@@ -660,10 +660,13 @@
$cat_id = $line["id"];
$edit_cat_id = $_GET["id"];
-
- if ($action == "edit" && $cat_id != $edit_cat_id) {
- $class .= "Grayed";
- $this_row_id = "";
+
+ if ($action == "edit" && $cat_id == $edit_cat_id) {
+ $class .= "Selected";
+ $this_row_id = "";
+ } else if ($action == "edit" && $cat_id != $edit_cat_id) {
+ $class .= "Grayed";
+ $this_row_id = "";
} else {
$this_row_id = "id=\"FCATR-$cat_id\"";
}