summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-07-31 14:20:04 +0100
committerAndrew Dolgov <[email protected]>2006-07-31 14:20:04 +0100
commit59e2aab4687694d6e64d56e8751a1d1eff3fd609 (patch)
tree9e3faaaed5aa5ac52871c936c613d63fb17806ed
parente1eb21470e93137adc59e39f6fe093cb1636b83f (diff)
escape feed title in generated feed
-rw-r--r--functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.php b/functions.php
index 5fd65c1d6..a58613ccb 100644
--- a/functions.php
+++ b/functions.php
@@ -2224,7 +2224,7 @@
30, false, $is_cat, $search, $search_mode, $match_on);
$result = $qfh_ret[0];
- $feed_title = $qfh_ret[1];
+ $feed_title = htmlspecialchars($qfh_ret[1]);
$feed_site_url = $qfh_ret[2];
$last_error = $qfh_ret[3];