diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-05-08 11:23:19 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-05-08 11:23:19 +0200 |
commit | ebf3953908a8dfdb754a5031d69326c6b83cf609 (patch) | |
tree | 8e99d5f70f2c2b91dc8bac41976582dcad8a4f81 /settings | |
parent | e4c05acf94cf799c5e7df67056c1c8d64089323e (diff) | |
parent | 3abaf34709e0c28aa4065d7644c58efa7f30e99e (diff) | |
download | nextcloud-server-ebf3953908a8dfdb754a5031d69326c6b83cf609.tar.gz nextcloud-server-ebf3953908a8dfdb754a5031d69326c6b83cf609.zip |
Merge pull request #16168 from owncloud/cron-errors
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 35e4d29ca29..3c21a547092 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> |