summaryrefslogtreecommitdiffstats
path: root/core/templates/error.php
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2017-03-29 00:42:22 +0200
committerLukas Reschke <lukas@statuscode.ch>2017-03-29 00:43:44 +0200
commit99675b46e92dc59c1971158ee9295bc3242fd3b8 (patch)
treef34f7d6fdff11ef2bcb9eaf5d47de13e6d3aa5f1 /core/templates/error.php
parent2c682ad34d13885ec1c0c784c2140fedfcf9c4cb (diff)
downloadnextcloud-server-99675b46e92dc59c1971158ee9295bc3242fd3b8.tar.gz
nextcloud-server-99675b46e92dc59c1971158ee9295bc3242fd3b8.zip
Replace unecessary unescaped prints with print
There's no need to have those unescaped from what I can see. Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
Diffstat (limited to 'core/templates/error.php')
-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 6e044b72414..b5e8c8eab3f 100644
--- a/core/templates/error.php
+++ b/core/templates/error.php
@@ -3,7 +3,7 @@
<li class='error'>
<?php p($error['error']) ?><br>
<?php if(isset($error['hint']) && $error['hint']): ?>
- <p class='hint'><?php print_unescaped($error['hint']) ?></p>
+ <p class='hint'><?php p($error['hint']) ?></p>
<?php endif;?>
</li>
<?php endforeach ?>