summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2009-10-22 11:55:59 +0400
committerAndrew Dolgov <[email protected]>2009-10-22 11:55:59 +0400
commit4589c7070cd2ee4b410a49b8554e31339861bf25 (patch)
tree397d44ad298da2b0ff5ec6ab554fefd9af5ef147
parent93a4731f19ad1acf58f4517aea2c9eede0e9aa93 (diff)
parentc8358b5b0c179824767a074def2e5bff6f3cb66a (diff)
Merge branch 'master' of /home/fox/public_html/testbox/tt-rss
-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>";