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:
authorFrank Karlitschek <frank@owncloud.org>2013-10-20 19:49:59 +0400
committerFrank Karlitschek <frank@owncloud.org>2013-10-20 19:49:59 +0400
commit2747862b139d5b321f1241502b027f4657d1253d (patch)
treee30700a9bbaefb0caaff4f2a6585549b94f07c64 /settings
parente4929a4d60c0d02d4eca466441415b78e2a6a1f2 (diff)
parent44d15d497e748aedd7f2a2cc3a6da1f62c27fb53 (diff)
Merge pull request #5429 from owncloud/fix_cron_docu
harmonize this with the documentation. Once every minute is way to often.
Diffstat (limited to 'settings')
-rw-r--r--settings/templates/admin.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/settings/templates/admin.php b/settings/templates/admin.php
index 1091b1dab54..a2c877340ee 100644
--- a/settings/templates/admin.php
+++ b/settings/templates/admin.php
@@ -104,7 +104,7 @@ if (!$_['internetconnectionworking']) {
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>
+ <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"
@@ -112,7 +112,7 @@ if (!$_['internetconnectionworking']) {
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>
+ <em><?php p($l->t("Use systems cron service to call the cron.php file every 15 minutes.")); ?></em>
</p>
</fieldset>