diff options
author | Morris Jobke <hey@morrisjobke.de> | 2016-07-19 17:54:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-19 17:54:16 +0200 |
commit | a3ea826b826605cb4994bc4a323fd6a1d54f6d48 (patch) | |
tree | ad5b324be816371e04a7b9c13530954ca9f96962 | |
parent | 8735a05d938da74eae29ab289646c48678a0fed7 (diff) | |
parent | 10fa8a05a0b0b85cad67ccfd88354aac9e420a4b (diff) | |
download | nextcloud-server-a3ea826b826605cb4994bc4a323fd6a1d54f6d48.tar.gz nextcloud-server-a3ea826b826605cb4994bc4a323fd6a1d54f6d48.zip |
Merge pull request #446 from nextcloud/cron-radio-buttons-color
Use the themed radio buttons for cron selection
-rw-r--r-- | settings/templates/admin.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/settings/templates/admin.php b/settings/templates/admin.php index e5b09089449..1830e542bbc 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -310,7 +310,7 @@ if ($_['cronErrors']) { href="<?php p(link_to_docs('admin-background-jobs')); ?>"></a> <p> - <input type="radio" name="mode" value="ajax" + <input type="radio" name="mode" value="ajax" class="radio" id="backgroundjobs_ajax" <?php if ($_['backgroundjobs_mode'] === "ajax") { print_unescaped('checked="checked"'); } ?>> @@ -318,7 +318,7 @@ if ($_['cronErrors']) { <em><?php p($l->t("Execute one task with each page loaded")); ?></em> </p> <p> - <input type="radio" name="mode" value="webcron" + <input type="radio" name="mode" value="webcron" class="radio" id="backgroundjobs_webcron" <?php if ($_['backgroundjobs_mode'] === "webcron") { print_unescaped('checked="checked"'); } ?>> @@ -326,7 +326,7 @@ if ($_['cronErrors']) { <em><?php p($l->t("cron.php is registered at a webcron service to call cron.php every 15 minutes over http.")); ?></em> </p> <p> - <input type="radio" name="mode" value="cron" + <input type="radio" name="mode" value="cron" class="radio" id="backgroundjobs_cron" <?php if ($_['backgroundjobs_mode'] === "cron") { print_unescaped('checked="checked"'); } ?>> |