mirror of
https://github.com/nextcloud/server.git
synced 2026-02-20 00:12:30 -05:00
Don't sanitize error message hint
This commit is contained in:
parent
145fb18042
commit
630ee644db
1 changed files with 1 additions and 1 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in a new issue