diff --git a/classes/context/Context.class.php b/classes/context/Context.class.php index 7d29450e9..15a0ec221 100644 --- a/classes/context/Context.class.php +++ b/classes/context/Context.class.php @@ -443,7 +443,7 @@ **/ function getBrowserTitle() { $oContext = &Context::getInstance(); - return $oContext->_getBrowserTitle(); + return htmlspecialchars($oContext->_getBrowserTitle()); } /** diff --git a/modules/rss/tpl/atom10.html b/modules/rss/tpl/atom10.html index dce7553bb..2ebf22df5 100644 --- a/modules/rss/tpl/atom10.html +++ b/modules/rss/tpl/atom10.html @@ -1,7 +1,7 @@ {''} - {htmlspecialchars($info->title)} + {$info->title} {str_replace('\'', ''', htmlspecialchars($info->description))} diff --git a/modules/rss/tpl/rss20.html b/modules/rss/tpl/rss20.html index 5493b4c3f..b3efaf6e8 100644 --- a/modules/rss/tpl/rss20.html +++ b/modules/rss/tpl/rss20.html @@ -2,7 +2,7 @@ - {htmlspecialchars($info->title)} + {$info->title} {$info->link} {$info->description} {$info->language}