1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-28 12:10:52 +02:00

forbid blank feed titles in feedlist (2)

This commit is contained in:
Andrew Dolgov 2007-05-16 06:23:33 +01:00
parent 0f39ae202e
commit 45eb71a776

View File

@ -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]";