From: Andrew Dolgov Date: Wed, 16 May 2007 05:22:58 +0000 (+0100) Subject: forbid blank feed titles in feedlist X-Git-Tag: schema_freeze_for_1.2.11~37 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=0f39ae202ef88ca05089d139acf7489f2ad49781;p=tt-rss.git forbid blank feed titles in feedlist --- diff --git a/functions.php b/functions.php index 678f1131..b54b32ac 100644 --- a/functions.php +++ b/functions.php @@ -3116,6 +3116,9 @@ while ($line = db_fetch_assoc($result)) { $feed = db_unescape_string($line["title"]); + + if (!$feed) $feed = "[Untitled]"; + $feed_id = $line["id"]; $subop = $_GET["subop"];