mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-19 09:51:30 +00:00
properly escape article link/PTITLEs (refs #472)
This commit is contained in:
@@ -3372,7 +3372,7 @@
|
||||
</head><body>";
|
||||
}
|
||||
|
||||
$title_escaped = db_escape_string($line['title']);
|
||||
$title_escaped = htmlspecialchars($line['title']);
|
||||
|
||||
$rv['content'] .= "<div id=\"PTITLE-$id\" style=\"display : none\">" .
|
||||
truncate_string(strip_tags($line['title']), 15) . "</div>";
|
||||
@@ -3400,7 +3400,7 @@
|
||||
$rv['content'] .= "<div class='postTitle'><a target='_blank'
|
||||
title=\"".htmlspecialchars($line['title'])."\"
|
||||
href=\"" .
|
||||
$line["link"] . "\">" .
|
||||
htmlspecialchars($line["link"]) . "\">" .
|
||||
$line["title"] .
|
||||
"<span class='author'>$entry_author</span></a></div>";
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user