From: Andrew Dolgov Date: Thu, 26 Apr 2007 06:33:24 +0000 (+0100) Subject: pref-feeds: do not truncate title now that we have more space X-Git-Tag: schema_freeze_for_1.2.11~92 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=8db8faa565cb8a3a6b15fcd31e6be542f66412f3;p=tt-rss.git pref-feeds: do not truncate title now that we have more space --- diff --git a/modules/pref-feeds.php b/modules/pref-feeds.php index 36ac7962..caca952a 100644 --- a/modules/pref-feeds.php +++ b/modules/pref-feeds.php @@ -853,7 +853,6 @@ $cat_id = $line["cat_id"]; $edit_title = htmlspecialchars(db_unescape_string($line["title"])); - $edit_link = htmlspecialchars(db_unescape_string($line["feed_url"])); $edit_cat = htmlspecialchars(db_unescape_string($line["category"])); $hidden = sql_bool_to_bool($line["hidden"]); @@ -921,12 +920,8 @@ print "$feed_icon"; } - $edit_title = truncate_string($edit_title, 40); - $edit_link = truncate_string($edit_link, 60); - if ($hidden) { $edit_title = "$edit_title (Hidden)"; - $edit_link = "$edit_link"; $last_updated = "$last_updated"; $last_article = "$last_article"; }