aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchrisaga <chrisaga@piwigo.org>2006-04-25 20:36:56 +0000
committerchrisaga <chrisaga@piwigo.org>2006-04-25 20:36:56 +0000
commitc66b0cf1c545296f24a8f8346698ef349329ced2 (patch)
tree7cad9decc416a556c9b1371fa4e44f35a6d5d87e
parent79accc0355c02fcbd2e9e10a288ec1ad585cfe68 (diff)
bug 351 fixed : htmlentities() on comments
git-svn-id: http://piwigo.org/svn/branches/branch-1_6@1271 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r--include/functions_html.inc.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/functions_html.inc.php b/include/functions_html.inc.php
index 21784654b..00acd0018 100644
--- a/include/functions_html.inc.php
+++ b/include/functions_html.inc.php
@@ -479,6 +479,7 @@ function get_html_menu_category($categories)
*/
function parse_comment_content($content)
{
+ htmlentities($content,ENT_QUOTES);
$pattern = '/(https?:\/\/\S*)/';
$replacement = '<a href="$1" rel="nofollow">$1</a>';
$content = preg_replace($pattern, $replacement, $content);
@@ -500,7 +501,7 @@ function parse_comment_content($content)
$replacement = '<span style="font-style:italic;">$1$2</span>';
$content = preg_replace($pattern, $replacement, $content);
- $content = '<div>'.htmlentities($content,ENT_QUOTES).'</div>';
+ $content = '<div>'.$content.'</div>';
return $content;
}