summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2009-10-22 11:55:50 +0400
committerAndrew Dolgov <[email protected]>2009-10-22 11:55:50 +0400
commitc8358b5b0c179824767a074def2e5bff6f3cb66a (patch)
tree397d44ad298da2b0ff5ec6ab554fefd9af5ef147 /modules
parent44f0638e967535b948ac80f88ec67789b44006a1 (diff)
fix wrong title being displayed when trying to unsubscribe from feed editor
Diffstat (limited to 'modules')
-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>";