1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-22 07:41:29 +00: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)) { while ($line = db_fetch_assoc($result)) {
$feed = db_unescape_string($line["title"]); $feed = trim(db_unescape_string($line["title"]));
if (!$feed) $feed = "[Untitled]"; if (!$feed) $feed = "[Untitled]";