diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-08-16 01:05:29 -0700 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-08-16 01:05:29 -0700 |
commit | 1e8849b04eebf06a7c86675e4d96c38d8f9c95b2 (patch) | |
tree | a79e36b9b3d24f93ea0051a6f2fee576039a9455 /settings | |
parent | c196985ea352637f540c6ead6519a3e13d7afe4a (diff) | |
parent | 0aa7dc9b893ffa5ac8a1f3a3959ad3de2ce6178c (diff) | |
download | nextcloud-server-1e8849b04eebf06a7c86675e4d96c38d8f9c95b2.tar.gz nextcloud-server-1e8849b04eebf06a7c86675e4d96c38d8f9c95b2.zip |
Merge pull request #4314 from owncloud/css-fixes
Design fixes
Diffstat (limited to 'settings')
-rw-r--r-- | settings/templates/admin.php | 20 |
1 files changed, 6 insertions, 14 deletions
diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 2b14c1460d6..e54586b80df 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -90,38 +90,30 @@ if (!$_['internetconnectionworking']) { <fieldset class="personalblock" id="backgroundjobs"> <legend><strong><?php p($l->t('Cron'));?></strong></legend> - <table class="nostyle"> - <tr> - <td> + <p> <input type="radio" name="mode" value="ajax" id="backgroundjobs_ajax" <?php if ($_['backgroundjobs_mode'] === "ajax") { print_unescaped('checked="checked"'); } ?>> <label for="backgroundjobs_ajax">AJAX</label><br/> <em><?php p($l->t("Execute one task with each page loaded")); ?></em> - </td> - </tr> - <tr> - <td> + </p> + <p> <input type="radio" name="mode" value="webcron" id="backgroundjobs_webcron" <?php if ($_['backgroundjobs_mode'] === "webcron") { print_unescaped('checked="checked"'); } ?>> <label for="backgroundjobs_webcron">Webcron</label><br/> <em><?php p($l->t("cron.php is registered at a webcron service to call cron.php once a minute over http.")); ?></em> - </td> - </tr> - <tr> - <td> + </p> + <p> <input type="radio" name="mode" value="cron" id="backgroundjobs_cron" <?php if ($_['backgroundjobs_mode'] === "cron") { print_unescaped('checked="checked"'); } ?>> <label for="backgroundjobs_cron">Cron</label><br/> <em><?php p($l->t("Use systems cron service to call the cron.php file once a minute.")); ?></em> - </td> - </tr> - </table> + </p> </fieldset> <fieldset class="personalblock" id="shareAPI"> |