summaryrefslogtreecommitdiffstats
path: root/core/templates/error.php
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2013-02-27 22:55:39 +0100
committerLukas Reschke <lukas@statuscode.ch>2013-02-27 22:55:39 +0100
commit229c907a57a4a64730e7b58f59cb8f7f627bfaf3 (patch)
tree560c7cdae8b7a43898832b0989b7fb3b780501a8 /core/templates/error.php
parent40e51d13d2fd028fa13902b12814532d1de15f5a (diff)
downloadnextcloud-server-229c907a57a4a64730e7b58f59cb8f7f627bfaf3.tar.gz
nextcloud-server-229c907a57a4a64730e7b58f59cb8f7f627bfaf3.zip
[core] From echo to p
Diffstat (limited to 'core/templates/error.php')
-rw-r--r--core/templates/error.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/templates/error.php b/core/templates/error.php
index 4f05e008f99..3305f3fba9c 100644
--- a/core/templates/error.php
+++ b/core/templates/error.php
@@ -1,8 +1,8 @@
<ul>
<?php foreach($_["errors"] as $error):?>
<li class='error'>
- <?php echo $error['error'] ?><br/>
- <p class='hint'><?php if(isset($error['hint']))echo $error['hint'] ?></p>
+ <?php p($error['error']) ?><br/>
+ <p class='hint'><?php if(isset($error['hint']))p($error['hint']) ?></p>
</li>
<?php endforeach ?>
</ul>