From 9a7877274596b8330c075299adf3683c189ba6ab Mon Sep 17 00:00:00 2001 From: LEZY Thomas Date: Wed, 28 May 2014 14:57:16 +0200 Subject: [PATCH] [ticket/12597] Change EXECUTE to RUN in language Fix previous commit : change execute to run in language keys PHPBB3-12597 --- phpBB/language/en/acp/common.php | 2 +- phpBB/phpbb/console/command/cron/run_all.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/phpBB/language/en/acp/common.php b/phpBB/language/en/acp/common.php index 9e7f280fa6..7b73aefcc5 100644 --- a/phpBB/language/en/acp/common.php +++ b/phpBB/language/en/acp/common.php @@ -221,7 +221,7 @@ $lang = array_merge($lang, array( 'BACK' => 'Back', - 'CLI_DESCR_CRON_EXECUTE_ALL' => 'Executes all available cron tasks.', + 'CLI_DESCR_CRON_RUN_ALL' => 'Runs all available cron tasks.', 'COLOUR_SWATCH' => 'Web-safe colour swatch', 'CONFIG_UPDATED' => 'Configuration updated successfully.', diff --git a/phpBB/phpbb/console/command/cron/run_all.php b/phpBB/phpbb/console/command/cron/run_all.php index 39b3e0c616..38a7735c03 100644 --- a/phpBB/phpbb/console/command/cron/run_all.php +++ b/phpBB/phpbb/console/command/cron/run_all.php @@ -48,7 +48,7 @@ class run_all extends \phpbb\console\command\command { $this ->setName('cron:run-all') - ->setDescription($this->user->lang('CLI_DESCR_CRON_EXECUTE_ALL')) + ->setDescription($this->user->lang('CLI_DESCR_CRON_RUN_ALL')) ; }