Navigation Menu

Skip to content

Commit

Permalink
Fix 8756: "Most active bugs" summary XSS vulnerability
Browse files Browse the repository at this point in the history
  • Loading branch information
giallu committed Jan 16, 2008
1 parent 4b22aa2 commit fabe393
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/summary_api.php
Expand Up @@ -322,7 +322,7 @@ function summary_print_by_activity() {
if ( $t_count++ == 10 ) break;

$t_bugid = string_get_bug_view_link( $row['id'] );
$t_summary = $row['summary'];
$t_summary = string_html_specialchars( $row['summary'] );
$t_notescount = $row['count'];

print "<tr " . helper_alternate_class() . ">\n";
Expand Down

0 comments on commit fabe393

Please sign in to comment.