Don't sanitize error message hint

This commit is contained in:
Lukas Reschke 2013-03-06 12:56:27 +01:00
parent 145fb18042
commit 630ee644db
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
<?php foreach($_["errors"] as $error):?>
<li class='error'>
<?php p($error['error']) ?><br/>
<p class='hint'><?php if(isset($error['hint']))p($error['hint']) ?></p>
<p class='hint'><?php if(isset($error['hint']))print_unescaped($error['hint']) ?></p>
</li>
<?php endforeach ?>
</ul>