From b50e4865675e86ad4f00b5e864b55a327a777e21 Mon Sep 17 00:00:00 2001 From: Igor Wiedler Date: Fri, 29 Oct 2010 11:50:39 +0200 Subject: [PATCH] [feature/system-cron] adjust some comments to reflect phpbb_ prefix PHPBB3-9596 --- phpBB/includes/cron/manager.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phpBB/includes/cron/manager.php b/phpBB/includes/cron/manager.php index 73b06afca0..b1eacf70fd 100644 --- a/phpBB/includes/cron/manager.php +++ b/phpBB/includes/cron/manager.php @@ -34,14 +34,14 @@ class phpbb_cron_manager } /** - * Finds cron task files. + * Finds cron task names. * * A cron task file must follow the naming convention: * includes/cron/task/$mod/$name.php. * $mod is core for tasks that are part of phpbb. * Modifications should use their name as $mod. * $name is the name of the cron task. - * Cron task is expected to be a class named cron_task_${mod}_${name}. + * Cron task is expected to be a class named phpbb_cron_task_${mod}_${name}. * * Todo: consider caching found task file list in global cache. */