Skip to content

Commit

Permalink
-Strip html tags from answers table headin column when browsing results
Browse files Browse the repository at this point in the history
-Remove anti-aliasing from stastics with jpgraph library since it causes memory crashes on certain systems

git-svn-id: file:///Users/Shitiz/Downloads/lssvn/source/stable_plus@3777 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
c-schmitz committed Dec 13, 2007
1 parent 49d0a2f commit 6a3b5c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion admin/browse.php
Expand Up @@ -451,7 +451,7 @@
else {$gbc = "oddrow";}
}
$tableheader .= "\t\t<td class='$gbc' width='$cellwidth'><strong>"
. "$fn[2]"
. strip_tags("$fn[2]")
. "</strong></td>\n";
}
$tableheader .= "\t</tr>\n\n";
Expand Down
2 changes: 1 addition & 1 deletion admin/statistics.php
Expand Up @@ -1526,7 +1526,7 @@ function show(element) {
$graph->legend->SetFont(constant($jpgraphfont), FS_NORMAL, $fontsize);
$graph->legend->SetPos(0.015, $legendtop, 'right', 'top');
$graph->legend->SetFillColor("white");
$graph->SetAntiAliasing();
// $graph->SetAntiAliasing();
}
$graph->title->SetColor("#EEEEEE");
$graph->SetMarginColor("#FFFFFF");
Expand Down

0 comments on commit 6a3b5c1

Please sign in to comment.