diff options
| author | Andrew Dolgov <fox@bah.spb.su> | 2007-08-25 08:27:14 +0100 |
|---|---|---|
| committer | Andrew Dolgov <fox@bah.spb.su> | 2007-08-25 08:27:14 +0100 |
| commit | c2f8aac43133e8c7e2ca09891e641b9e3e98c3f8 (patch) | |
| tree | c6f2aa64fa5d1ac5b69759de5e002cc963e7ef25 | |
| parent | 3c62b74874f61193b5aa054bd09a98e6932a502d (diff) | |
simplepie: properly escape feed title
| -rw-r--r-- | functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.php b/functions.php index f3f82d312..d12120a63 100644 --- a/functions.php +++ b/functions.php @@ -499,7 +499,7 @@ if (!$registered_title || $registered_title == "[Unknown]") { if (ENABLE_SIMPLEPIE) { - $feed_title = $rss->get_title(); + $feed_title = db_escape_string($rss->get_title()); } else { $feed_title = db_escape_string($rss->channel["title"]); } |