diff options
author | Igor Wiedler <igor@wiedler.ch> | 2010-10-29 11:40:18 +0200 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2011-02-12 22:05:52 -0500 |
commit | 132d2c2bd85bac6ed87ea3c57de27a9675192f29 (patch) | |
tree | 56f6c4afd50300bd368ddd23b47e946d9a8f4316 /phpBB/includes/cron | |
parent | bd58fa49c000e99d049cbd96306315e1bd35b938 (diff) | |
download | forums-132d2c2bd85bac6ed87ea3c57de27a9675192f29.tar forums-132d2c2bd85bac6ed87ea3c57de27a9675192f29.tar.gz forums-132d2c2bd85bac6ed87ea3c57de27a9675192f29.tar.bz2 forums-132d2c2bd85bac6ed87ea3c57de27a9675192f29.tar.xz forums-132d2c2bd85bac6ed87ea3c57de27a9675192f29.zip |
[feature/system-cron] adjust some last filenames to make autoloading work
PHPBB3-9596
Diffstat (limited to 'phpBB/includes/cron')
-rw-r--r-- | phpBB/includes/cron/task/base.php (renamed from phpBB/includes/cron/task_base.php) | 0 | ||||
-rw-r--r-- | phpBB/includes/cron/task/parametrized.php (renamed from phpBB/includes/cron/task_parametrized.php) | 2 | ||||
-rw-r--r-- | phpBB/includes/cron/task/task.php (renamed from phpBB/includes/cron/task.php) | 0 | ||||
-rw-r--r-- | phpBB/includes/cron/task/wrapper.php (renamed from phpBB/includes/cron/task_wrapper.php) | 2 |
4 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/cron/task_base.php b/phpBB/includes/cron/task/base.php index ba399c18b1..ba399c18b1 100644 --- a/phpBB/includes/cron/task_base.php +++ b/phpBB/includes/cron/task/base.php diff --git a/phpBB/includes/cron/task_parametrized.php b/phpBB/includes/cron/task/parametrized.php index 1906009ebe..d505cc3328 100644 --- a/phpBB/includes/cron/task_parametrized.php +++ b/phpBB/includes/cron/task/parametrized.php @@ -27,7 +27,7 @@ if (!defined('IN_PHPBB')) * * @package phpBB3 */ -interface phpbb_cron_task_parametrized extends cron_task +interface phpbb_cron_task_parametrized extends phpbb_cron_task { /** * Returns parameters of this cron task as an array. diff --git a/phpBB/includes/cron/task.php b/phpBB/includes/cron/task/task.php index 38fb2a6cd1..38fb2a6cd1 100644 --- a/phpBB/includes/cron/task.php +++ b/phpBB/includes/cron/task/task.php diff --git a/phpBB/includes/cron/task_wrapper.php b/phpBB/includes/cron/task/wrapper.php index 159382a8d1..e31f467cc8 100644 --- a/phpBB/includes/cron/task_wrapper.php +++ b/phpBB/includes/cron/task/wrapper.php @@ -27,7 +27,7 @@ class phpbb_cron_task_wrapper /** * Wraps a task $task, which must implement cron_task interface. */ - public function __construct(cron_task $task) + public function __construct(phpbb_cron_task $task) { $this->task = $task; } |