aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpBB/language/en/acp/common.php2
-rw-r--r--phpBB/phpbb/console/command/cron/cron_list.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/language/en/acp/common.php b/phpBB/language/en/acp/common.php
index 239b576738..7d82e21799 100644
--- a/phpBB/language/en/acp/common.php
+++ b/phpBB/language/en/acp/common.php
@@ -230,8 +230,8 @@ $lang = array_merge($lang, array(
'COLOUR_SWATCH' => 'Web-safe colour swatch',
'CONFIG_UPDATED' => 'Configuration updated successfully.',
'CRON_LOCK_ERROR' => 'Could not obtain cron lock.',
+ 'CRON_NO_RUNNABLE_TASK' => 'No cron task needs to be run right now.',
'CRON_NO_SUCH_TASK' => 'Could not find cron task ā€œ%sā€.',
- 'CRON_NO_TASK' => 'No cron tasks need to be run right now.',
'DEACTIVATE' => 'Deactivate',
'DIRECTORY_DOES_NOT_EXIST' => 'The entered path ā€œ%sā€ does not exist.',
diff --git a/phpBB/phpbb/console/command/cron/cron_list.php b/phpBB/phpbb/console/command/cron/cron_list.php
index 1c32e6e306..cc51a57f4b 100644
--- a/phpBB/phpbb/console/command/cron/cron_list.php
+++ b/phpBB/phpbb/console/command/cron/cron_list.php
@@ -44,7 +44,7 @@ class cron_list extends \phpbb\console\command\command
if (empty($tasks))
{
- $output->writeln($this->user->lang('NO_TASK'));
+ $output->writeln($this->user->lang('CRON_NO_RUNNABLE_TASK'));
return;
}