diff options
author | Joas Schilling <coding@schilljs.com> | 2017-03-29 10:02:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-29 10:02:10 +0200 |
commit | a88edce54f26eab316e414933ee90160ab31111a (patch) | |
tree | 86c128ced0b52e0c50eaaf8d514112d05b176470 /core | |
parent | 784e06073bc683bb4007c968ad59592f79367ba5 (diff) | |
parent | 99675b46e92dc59c1971158ee9295bc3242fd3b8 (diff) | |
download | nextcloud-server-a88edce54f26eab316e414933ee90160ab31111a.tar.gz nextcloud-server-a88edce54f26eab316e414933ee90160ab31111a.zip |
Merge pull request #4130 from nextcloud/replace-useless-print-unescaped-with-p
Replace unecessary unescaped prints with print
Diffstat (limited to 'core')
-rw-r--r-- | core/templates/error.php | 2 |
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 ?> |