summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/pref-feeds.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/pref-feeds.php b/modules/pref-feeds.php
index 17379a2bf..e8c6d8783 100644
--- a/modules/pref-feeds.php
+++ b/modules/pref-feeds.php
@@ -227,10 +227,10 @@
$is_selected = "";
}
- $title = truncate_string(htmlspecialchars($tmp_line["title"]), 40);
+ $linked_title = truncate_string(htmlspecialchars($tmp_line["title"]), 40);
printf("<option $is_selected value='%d'>%s</option>",
- $tmp_line["id"], $title);
+ $tmp_line["id"], $linked_title);
}
print "</select>";