summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-05-16 06:23:33 +0100
committerAndrew Dolgov <[email protected]>2007-05-16 06:23:33 +0100
commit45eb71a776944e1a2ada1b9ebd9af0064dfc5744 (patch)
tree2dde94c3d92cac73c004e9f5fc64dce52e509ba3 /functions.php
parent0f39ae202ef88ca05089d139acf7489f2ad49781 (diff)
forbid blank feed titles in feedlist (2)
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.php b/functions.php
index b54b32acc..8ce6de89f 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]";