summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--core/templates/error.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/templates/error.php b/core/templates/error.php
index 3305f3fba9c..ac91357b350 100644
--- a/core/templates/error.php
+++ b/core/templates/error.php
@@ -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>