summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-03-23 09:44:52 +0400
committerAndrew Dolgov <[email protected]>2013-03-23 09:44:52 +0400
commitd6ce708930cb838af3ed1cf585d3ca62b7036d9b (patch)
tree0a7fd2b21081a4b7561106cac7771d073994f2ea /include
parent01dffac771a64b2e8b87d0c3d76c09ccc51f125f (diff)
title escaping: do not double-encode entities
Diffstat (limited to 'include')
-rw-r--r--include/functions.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/functions.php b/include/functions.php
index e57ee6953..994b4c179 100644
--- a/include/functions.php
+++ b/include/functions.php
@@ -3022,7 +3022,8 @@
if ($line["link"]) {
$rv['content'] .= "<div class='postTitle'><a target='_blank'
- title=\"".htmlspecialchars($line['title'])."\"
+ title=\"".htmlspecialchars($line["link"], ENT_COMPAT | ENT_HTML401,
+ 'utf-8', false)."\"
href=\"" .
htmlspecialchars($line["link"]) . "\">" .
$line["title"] . "</a>" .