From 0f39ae202ef88ca05089d139acf7489f2ad49781 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 16 May 2007 06:22:58 +0100 Subject: [PATCH] forbid blank feed titles in feedlist --- functions.php | 3 +++ 1 file changed, 3 insertions(+) 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"]; -- 2.39.2