- call htmlspecialchars() on comment

This commit is contained in:
steinm 2011-12-06 12:30:18 +00:00
parent a731ac5ea0
commit 95c0a4deee

View File

@ -54,7 +54,7 @@ print "<td>".getMLText("email")." : </td>\n";
print "<td>".htmlspecialchars($user->getEmail())."</td>\n";
print "</tr>\n<tr>\n";
print "<td>".getMLText("comment")." : </td>\n";
print "<td>".$user->getComment()."</td>\n";
print "<td>".htmlspecialchars($user->getComment())."</td>\n";
print"</tr>\n</table>\n";
UI::contentContainerEnd();