mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-19 07:31:29 +00:00
properly escape comment links
This commit is contained in:
@@ -633,14 +633,14 @@ class Feeds extends Handler_Protected {
|
|||||||
|
|
||||||
if ($num_comments > 0) {
|
if ($num_comments > 0) {
|
||||||
if ($line["comments"]) {
|
if ($line["comments"]) {
|
||||||
$comments_url = $line["comments"];
|
$comments_url = htmlspecialchars($line["comments"]);
|
||||||
} else {
|
} else {
|
||||||
$comments_url = $line["link"];
|
$comments_url = htmlspecialchars($line["link"]);
|
||||||
}
|
}
|
||||||
$entry_comments = "<a target='_blank' href=\"$comments_url\">$num_comments comments</a>";
|
$entry_comments = "<a target='_blank' href=\"$comments_url\">$num_comments comments</a>";
|
||||||
} else {
|
} else {
|
||||||
if ($line["comments"] && $line["link"] != $line["comments"]) {
|
if ($line["comments"] && $line["link"] != $line["comments"]) {
|
||||||
$entry_comments = "<a target='_blank' href=\"".$line["comments"]."\">comments</a>";
|
$entry_comments = "<a target='_blank' href=\"".htmlspecialchars($line["comments"])."\">comments</a>";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -3352,14 +3352,14 @@
|
|||||||
|
|
||||||
if ($num_comments > 0) {
|
if ($num_comments > 0) {
|
||||||
if ($line["comments"]) {
|
if ($line["comments"]) {
|
||||||
$comments_url = $line["comments"];
|
$comments_url = htmlspecialchars($line["comments"]);
|
||||||
} else {
|
} else {
|
||||||
$comments_url = $line["link"];
|
$comments_url = htmlspecialchars($line["link"]);
|
||||||
}
|
}
|
||||||
$entry_comments = "<a target='_blank' href=\"$comments_url\">$num_comments comments</a>";
|
$entry_comments = "<a target='_blank' href=\"$comments_url\">$num_comments comments</a>";
|
||||||
} else {
|
} else {
|
||||||
if ($line["comments"] && $line["link"] != $line["comments"]) {
|
if ($line["comments"] && $line["link"] != $line["comments"]) {
|
||||||
$entry_comments = "<a target='_blank' href=\"".$line["comments"]."\">comments</a>";
|
$entry_comments = "<a target='_blank' href=\"".htmlspecialchars($line["comments"])."\">comments</a>";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user