From 80b9af6ad88e8e09e9e7985e72f9087f67394976 Mon Sep 17 00:00:00 2001 From: Wouter Wolters <typo3@wouterwolters.nl> Date: Tue, 21 Jul 2015 17:40:52 +0200 Subject: [PATCH] [TASK] Move cli script to Resources/PHP in ext:scheduler Resolves: #68436 Releases: master Change-Id: I466fad8f5579bde5d4619252d65757ebf947ad14 Reviewed-on: http://review.typo3.org/41785 Reviewed-by: Susanne Moog <typo3@susannemoog.de> Tested-by: Susanne Moog <typo3@susannemoog.de> Reviewed-by: Christian Kuhn <lolli@schwarzbu.ch> Tested-by: Christian Kuhn <lolli@schwarzbu.ch> --- .../scheduler/{cli => Resources/PHP}/scheduler_cli_dispatch.php | 0 typo3/sysext/scheduler/ext_localconf.php | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename typo3/sysext/scheduler/{cli => Resources/PHP}/scheduler_cli_dispatch.php (100%) diff --git a/typo3/sysext/scheduler/cli/scheduler_cli_dispatch.php b/typo3/sysext/scheduler/Resources/PHP/scheduler_cli_dispatch.php similarity index 100% rename from typo3/sysext/scheduler/cli/scheduler_cli_dispatch.php rename to typo3/sysext/scheduler/Resources/PHP/scheduler_cli_dispatch.php diff --git a/typo3/sysext/scheduler/ext_localconf.php b/typo3/sysext/scheduler/ext_localconf.php index bcd9857cf283..85e291b9bc70 100644 --- a/typo3/sysext/scheduler/ext_localconf.php +++ b/typo3/sysext/scheduler/ext_localconf.php @@ -3,7 +3,7 @@ defined('TYPO3_MODE') or die(); // Register the Scheduler as a possible key for CLI calls $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['GLOBAL']['cliKeys']['scheduler'] = array( - 'EXT:scheduler/cli/scheduler_cli_dispatch.php', + 'EXT:scheduler/Resources/PHP/scheduler_cli_dispatch.php', '_CLI_scheduler' ); // Get the extensions's configuration -- GitLab