Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
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 929e8dd3984..c6f7706edc1 100644
--- a/core/templates/error.php
+++ b/core/templates/error.php
@@ -1,10 +1,10 @@
<div class="error">
<h2><?php p($l->t('Error')) ?></h2>
<ul>
- <?php foreach($_["errors"] as $error):?>
+ <?php foreach ($_["errors"] as $error):?>
<li>
<p><?php p($error['error']) ?></p>
- <?php if(isset($error['hint']) && $error['hint']): ?>
+ <?php if (isset($error['hint']) && $error['hint']): ?>
<p class='hint'><?php p($error['hint']) ?></p>
<?php endif;?>
</li>