]> git.wh0rd.org - tt-rss.git/commitdiff
pref-feeds: do not truncate title now that we have more space
authorAndrew Dolgov <fox@madoka.spb.ru>
Thu, 26 Apr 2007 06:33:24 +0000 (07:33 +0100)
committerAndrew Dolgov <fox@madoka.spb.ru>
Thu, 26 Apr 2007 06:33:24 +0000 (07:33 +0100)
modules/pref-feeds.php

index 36ac7962ecfbd8c9b45509ad9574efa070b6ab73..caca952ad1a899162e13d5862b46abb63533b40a 100644 (file)
                                $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"]);
                                        print "<td class='feedIcon'>$feed_icon</td>";           
                                }
 
-                               $edit_title = truncate_string($edit_title, 40);
-                               $edit_link = truncate_string($edit_link, 60);
-
                                if ($hidden) {
                                        $edit_title = "<span class=\"insensitive\">$edit_title (Hidden)</span>";
-                                       $edit_link = "<span class=\"insensitive\">$edit_link</span>";
                                        $last_updated = "<span class=\"insensitive\">$last_updated</span>";
                                        $last_article = "<span class=\"insensitive\">$last_article</span>";
                                }