diff options
author | Frank Karlitschek <frank@owncloud.org> | 2013-10-20 08:49:59 -0700 |
---|---|---|
committer | Frank Karlitschek <frank@owncloud.org> | 2013-10-20 08:49:59 -0700 |
commit | 2747862b139d5b321f1241502b027f4657d1253d (patch) | |
tree | e30700a9bbaefb0caaff4f2a6585549b94f07c64 /settings | |
parent | e4929a4d60c0d02d4eca466441415b78e2a6a1f2 (diff) | |
parent | 44d15d497e748aedd7f2a2cc3a6da1f62c27fb53 (diff) | |
download | nextcloud-server-2747862b139d5b321f1241502b027f4657d1253d.tar.gz nextcloud-server-2747862b139d5b321f1241502b027f4657d1253d.zip |
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.php | 4 |
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> |