summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2009-06-22 16:09:04 +0400
committerAndrew Dolgov <[email protected]>2009-06-22 16:09:04 +0400
commitbc03c563defccc9a6ef32e3eb402638274edd4f5 (patch)
tree8e7ac272bac567b0636a8bab7bc9fc9032a93ebb /functions.php
parentf45a286b8d62f710b519a98c7d4b75a0c34d5d10 (diff)
call sanitize_rss() when generating syndicated feeds
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 8e98d4874..90b9b49e0 100644
--- a/functions.php
+++ b/functions.php
@@ -3517,7 +3517,7 @@
htmlspecialchars($line["title"]) . "</title>";
print "<description><![CDATA[";
- print $line["content_preview"];
+ print sanitize_rss($link, $line["content_preview"]);
if ($line["note"]) {
print "<div style='$note_style'>";
print $line["note"];