summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2016-04-13 20:32:44 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2016-04-13 20:32:44 +0200
commit87cd4f362396d754632bad842daedac4d8741307 (patch)
tree78139aee364bcc827b5080b55d212ec68bcf9d8e
parentf5919c23babf37404a0e7f7cf3d581e26c4e24df (diff)
Better cron warning message
-rw-r--r--templates/part.content.cronwarning.php13
1 files changed, 4 insertions, 9 deletions
diff --git a/templates/part.content.cronwarning.php b/templates/part.content.cronwarning.php
index a6a3b8d11..ca3371ddb 100644
--- a/templates/part.content.cronwarning.php
+++ b/templates/part.content.cronwarning.php
@@ -1,12 +1,9 @@
<?php if ($_['cronWarning']) { ?>
<news-instant-notification id="cron-warning">
- <p><?php p($l->t('Ajax or webcron cron mode detected! Your feeds will ' .
- 'not be updated correctly. It is recommended to either use ' .
- 'the operating system cron or a custom updater.'
- )); ?>
+ <p><?php p($l->t('Ajax or Web cron mode detected! Your feeds will not be updated!')); ?></p>
<ul>
<li>
- <a href="https://doc.owncloud.org/server/8.1/admin_manual/configuration_server/background_jobs_configuration.html#cron"
+ <a href="https://doc.owncloud.org/server/9.0/admin_manual/configuration_server/background_jobs_configuration.html#cron"
target="_blank">
<?php
p($l->t('How to set up the operating system cron'));
@@ -14,12 +11,10 @@
</a>
</li>
<li>
- <a href="https://github.com/owncloud/news/wiki/Custom-Updater"
+ <a href="https://github.com/owncloud/news-updater"
target="_blank">
<?php
- p($l->t('How to set up a custom updater ' .
- '(faster and no possible deadlock) '
- ));
+ p($l->t('Install and set up a faster parallel updater that uses the News app\'s update API'));
?>
</a>
</li>