From 183ff16c7cc7ed51c10158d8f987a82bedf15bf6 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 13 Dec 2011 16:08:08 +0400 Subject: rename sanitize_rss to sanitize --- include/functions.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include/functions.php') diff --git a/include/functions.php b/include/functions.php index 2246e6bf3..ef34b3d20 100644 --- a/include/functions.php +++ b/include/functions.php @@ -2577,7 +2577,7 @@ $tpl->setVariable('ARTICLE_EXCERPT', truncate_string(strip_tags($line["content_preview"]), 100, '...')); - $content = sanitize_rss($link, $line["content_preview"], false, $owner_uid); + $content = sanitize($link, $line["content_preview"], false, $owner_uid); if ($line['note']) { $content = "
Article note: " . $line['note'] . "
" . @@ -2640,7 +2640,7 @@ } } - function sanitize_rss($link, $str, $force_strip_tags = false, $owner = false, $site_url = false) { + function sanitize($link, $str, $force_strip_tags = false, $owner = false, $site_url = false) { global $purifier; if (!$owner) $owner = $_SESSION["uid"]; @@ -3749,7 +3749,7 @@ $rv['content'] .= "
"; - $article_content = sanitize_rss($link, $line["content"], false, false, + $article_content = sanitize($link, $line["content"], false, false, $feed_site_url); $rv['content'] .= $article_content; @@ -4245,7 +4245,7 @@ $feed_site_url = $line["site_url"]; - $article_content = sanitize_rss($link, $line["content_preview"], + $article_content = sanitize($link, $line["content_preview"], false, false, $feed_site_url); $reply['content'] .= "
"; -- cgit v1.2.3