properly escape comment links
This commit is contained in:
parent
5c56897349
commit
6e577ba157
|
@ -633,14 +633,14 @@ class Feeds extends Handler_Protected {
|
|||
|
||||
if ($num_comments > 0) {
|
||||
if ($line["comments"]) {
|
||||
$comments_url = $line["comments"];
|
||||
$comments_url = htmlspecialchars($line["comments"]);
|
||||
} else {
|
||||
$comments_url = $line["link"];
|
||||
$comments_url = htmlspecialchars($line["link"]);
|
||||
}
|
||||
$entry_comments = "<a target='_blank' href=\"$comments_url\">$num_comments comments</a>";
|
||||
} else {
|
||||
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 ($line["comments"]) {
|
||||
$comments_url = $line["comments"];
|
||||
$comments_url = htmlspecialchars($line["comments"]);
|
||||
} else {
|
||||
$comments_url = $line["link"];
|
||||
$comments_url = htmlspecialchars($line["link"]);
|
||||
}
|
||||
$entry_comments = "<a target='_blank' href=\"$comments_url\">$num_comments comments</a>";
|
||||
} else {
|
||||
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>";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue