From a9e0f9947d1d71779a6c02dbc4c40f70f6a98723 Mon Sep 17 00:00:00 2001 From: Igor Wiedler Date: Thu, 28 Oct 2010 22:26:49 +0200 Subject: [feature/system-cron] add phpbb_ prefix to all class names PHPBB3-9596 --- phpBB/includes/cron/task_wrapper.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'phpBB/includes/cron/task_wrapper.php') diff --git a/phpBB/includes/cron/task_wrapper.php b/phpBB/includes/cron/task_wrapper.php index ecc0d1901d..b3662a4e31 100644 --- a/phpBB/includes/cron/task_wrapper.php +++ b/phpBB/includes/cron/task_wrapper.php @@ -22,7 +22,7 @@ if (!defined('IN_PHPBB')) * * @package phpBB3 */ -class cron_task_wrapper +class phpbb_cron_task_wrapper { /** * Wraps a task $task, which must implement cron_task interface. @@ -40,7 +40,7 @@ class cron_task_wrapper */ public function is_parametrized() { - return $this->task instanceof parametrized_cron_task; + return $this->task instanceof phpbb_parametrized_cron_task; } /** -- cgit v1.2.1