]> git.wh0rd.org - tt-rss.git/commitdiff
Revert "title escaping: do not double-encode entities"
authorAndrew Dolgov <fox@madoka.volgo-balt.ru>
Sat, 23 Mar 2013 06:49:50 +0000 (10:49 +0400)
committerAndrew Dolgov <fox@madoka.volgo-balt.ru>
Sat, 23 Mar 2013 06:49:50 +0000 (10:49 +0400)
This reverts commit d6ce708930cb838af3ed1cf585d3ca62b7036d9b.

classes/feeds.php
include/functions.php

index f673211774b25a41e28ae1d0e43383341491fc1f..3657a0564caa247cc91e9d0c0fb186c44506b45e 100644 (file)
@@ -432,8 +432,7 @@ class Feeds extends Handler_Protected {
                                        $reply['content'] .= "<div onclick='return hlClicked(event, $id)'
                                                class=\"hlTitle\"><span class='hlContent$hlc_suffix'>";
                                        $reply['content'] .= "<a id=\"RTITLE-$id\"
-                                               href=\"" . htmlspecialchars($line["link"], ENT_COMPAT | ENT_HTML401,
-                                                       'utf-8', false) . "\"
+                                               href=\"" . htmlspecialchars($line["link"]) . "\"
                                                onclick=\"\">" .
                                                truncate_string($line["title"], 200);
 
index 2329a2331c6acaa390e1bc0519e4641a84b9ea48..c01e4100437886997ddd86423ff3c07f830cf1ff 100644 (file)
 
                        if ($line["link"]) {
                                $rv['content'] .= "<div class='postTitle'><a target='_blank'
-                                       title=\"".htmlspecialchars($line["link"], ENT_COMPAT | ENT_HTML401,
-               'utf-8', false)."\"
+                                       title=\"".htmlspecialchars($line['title'])."\"
                                        href=\"" .
                                        htmlspecialchars($line["link"]) . "\">" .
                                        $line["title"] . "</a>" .