Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2016-07-19 17:41:47 +0300
committerJoas Schilling <coding@schilljs.com>2016-07-19 17:41:47 +0300
commit10fa8a05a0b0b85cad67ccfd88354aac9e420a4b (patch)
treea410660be0880b006f5a3ff45da3315430ceac22 /settings
parent4a963c21fff251a5ea105e6ec50e6d87dca1654e (diff)
Use the themed radio buttons for cron selection
Diffstat (limited to 'settings')
-rw-r--r--settings/templates/admin.php6
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"');
} ?>>