diff options
author | Igor Wiedler <igor@wiedler.ch> | 2010-10-29 11:50:39 +0200 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2011-02-12 22:05:52 -0500 |
commit | b50e4865675e86ad4f00b5e864b55a327a777e21 (patch) | |
tree | fe0f5de7228a5314d3b47226d12d7ebc8fe34cc7 /phpBB/includes/cron | |
parent | 4f86b4d205589a11c5c4403c215db522dd8fbac4 (diff) | |
download | forums-b50e4865675e86ad4f00b5e864b55a327a777e21.tar forums-b50e4865675e86ad4f00b5e864b55a327a777e21.tar.gz forums-b50e4865675e86ad4f00b5e864b55a327a777e21.tar.bz2 forums-b50e4865675e86ad4f00b5e864b55a327a777e21.tar.xz forums-b50e4865675e86ad4f00b5e864b55a327a777e21.zip |
[feature/system-cron] adjust some comments to reflect phpbb_ prefix
PHPBB3-9596
Diffstat (limited to 'phpBB/includes/cron')
-rw-r--r-- | phpBB/includes/cron/manager.php | 4 |
1 files 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. */ |