diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-05-07 16:19:14 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-05-07 16:19:14 +0200 |
commit | 3abaf34709e0c28aa4065d7644c58efa7f30e99e (patch) | |
tree | 5edc5f90bb80815987529de20764e37b49d2cde9 /settings | |
parent | 234429895485c1003cad7e001e7ba88ec13343f5 (diff) | |
download | nextcloud-server-3abaf34709e0c28aa4065d7644c58efa7f30e99e.tar.gz nextcloud-server-3abaf34709e0c28aa4065d7644c58efa7f30e99e.zip |
fix cron errors to only appear in one line instead of introducing another list
Diffstat (limited to 'settings')
-rw-r--r-- | settings/templates/admin.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 1fc8c9faf7e..1e76b99215b 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -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> |