diff options
author | Igor Wiedler <igor@wiedler.ch> | 2010-10-28 22:30:44 +0200 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2011-02-12 22:05:52 -0500 |
commit | bd58fa49c000e99d049cbd96306315e1bd35b938 (patch) | |
tree | e58128b8db2fe74199d248d8fa66b3b97032cbd9 /phpBB/includes/cron/task/core | |
parent | a9e0f9947d1d71779a6c02dbc4c40f70f6a98723 (diff) | |
download | forums-bd58fa49c000e99d049cbd96306315e1bd35b938.tar forums-bd58fa49c000e99d049cbd96306315e1bd35b938.tar.gz forums-bd58fa49c000e99d049cbd96306315e1bd35b938.tar.bz2 forums-bd58fa49c000e99d049cbd96306315e1bd35b938.tar.xz forums-bd58fa49c000e99d049cbd96306315e1bd35b938.zip |
[feature/system-cron] make parameterized interface autoloadable
also extract it to a separate file
PHPBB3-9596
Diffstat (limited to 'phpBB/includes/cron/task/core')
-rw-r--r-- | phpBB/includes/cron/task/core/prune_forum.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/cron/task/core/prune_forum.php b/phpBB/includes/cron/task/core/prune_forum.php index eb01e535a9..5efcde4102 100644 --- a/phpBB/includes/cron/task/core/prune_forum.php +++ b/phpBB/includes/cron/task/core/prune_forum.php @@ -25,7 +25,7 @@ if (!defined('IN_PHPBB')) * * @package phpBB3 */ -class phpbb_cron_task_core_prune_forum extends phpbb_cron_task_base implements phpbb_parametrized_cron_task +class phpbb_cron_task_core_prune_forum extends phpbb_cron_task_base implements phpbb_cron_task_parametrized { private $forum_data; |