diff options
author | Igor Wiedler <igor@wiedler.ch> | 2012-08-25 16:51:19 +0200 |
---|---|---|
committer | Igor Wiedler <igor@wiedler.ch> | 2012-08-25 16:51:19 +0200 |
commit | 4f0f63ae8feb8efc70954e64bdca1f81ae98b212 (patch) | |
tree | 3e431db272de8d8ed9e6e67d0272ac15f99027ff /phpBB/includes/cron/manager.php | |
parent | 4feb9aa8d7bda303b62acec924008f75042eb757 (diff) | |
download | forums-4f0f63ae8feb8efc70954e64bdca1f81ae98b212.tar forums-4f0f63ae8feb8efc70954e64bdca1f81ae98b212.tar.gz forums-4f0f63ae8feb8efc70954e64bdca1f81ae98b212.tar.bz2 forums-4f0f63ae8feb8efc70954e64bdca1f81ae98b212.tar.xz forums-4f0f63ae8feb8efc70954e64bdca1f81ae98b212.zip |
[feature/dic] Make cron task attributes protected, one per line
PHPBB3-10739
Diffstat (limited to 'phpBB/includes/cron/manager.php')
-rw-r--r-- | phpBB/includes/cron/manager.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/includes/cron/manager.php b/phpBB/includes/cron/manager.php index 018ae39f18..7d2931b502 100644 --- a/phpBB/includes/cron/manager.php +++ b/phpBB/includes/cron/manager.php @@ -32,7 +32,8 @@ class phpbb_cron_manager */ protected $tasks = array(); - protected $phpbb_root_path, $php_ext; + protected $phpbb_root_path; + protected $php_ext; /** * Constructor. Loads all available tasks. |