Merge pull request #16168 from owncloud/cron-errors

fix cron errors to only appear in one line instead of introducing another list
This commit is contained in:
Lukas Reschke 2015-05-08 11:23:19 +02:00
commit ebf3953908
1 changed files with 1 additions and 3 deletions

View File

@ -158,9 +158,7 @@ if ($_['cronErrors']) {
<br>
<ol>
<?php foreach(json_decode($_['cronErrors']) as $error) { if(isset($error->error)) {?>
<li><?php p($error->error) ?></li>
<ul><li><?php p($error->hint) ?></li></ul>
<li><?php p($error->error) ?> <?php p($error->hint) ?></li>
<?php }};?>
</ol>
</li>