escape quotes in tag cloud

This commit is contained in:
Andrew Dolgov 2007-05-19 17:28:10 +01:00
parent 474390311f
commit 546ffab4aa
1 changed files with 4 additions and 2 deletions

View File

@ -3967,7 +3967,9 @@
// and add the $min_size set above // and add the $min_size set above
$size = round($min_size + (($value - $min_qty) * $step)); $size = round($min_size + (($value - $min_qty) * $step));
echo "<a href=\"javascript:viewfeed('$key') \" style=\"font-size: " . $key_escaped = str_replace("'", "\\'", $key);
echo "<a href=\"javascript:viewfeed('$key_escaped') \" style=\"font-size: " .
$size . "px\" title=\"$value articles tagged with " . $size . "px\" title=\"$value articles tagged with " .
$key . '">' . $key . '</a> '; $key . '">' . $key . '</a> ';
} }