From: Andrew Dolgov Date: Wed, 16 May 2007 05:23:33 +0000 (+0100) Subject: forbid blank feed titles in feedlist (2) X-Git-Tag: schema_freeze_for_1.2.11~36 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=45eb71a776944e1a2ada1b9ebd9af0064dfc5744;p=tt-rss.git forbid blank feed titles in feedlist (2) --- diff --git a/functions.php b/functions.php index b54b32ac..8ce6de89 100644 --- a/functions.php +++ b/functions.php @@ -3115,7 +3115,7 @@ while ($line = db_fetch_assoc($result)) { - $feed = db_unescape_string($line["title"]); + $feed = trim(db_unescape_string($line["title"])); if (!$feed) $feed = "[Untitled]";