diff options
author | Igor Wiedler <igor@wiedler.ch> | 2012-08-25 17:04:42 +0200 |
---|---|---|
committer | Igor Wiedler <igor@wiedler.ch> | 2012-08-25 17:04:42 +0200 |
commit | e103b2f0cc8c8317ce4cb2ca8c4e0e42fca283a2 (patch) | |
tree | 972150abf1b86dc861c544461fdeed0fef06fb90 /phpBB/includes/cron/task | |
parent | ae85d43757463e743917f43ee3e014a8b1af85d6 (diff) | |
download | forums-e103b2f0cc8c8317ce4cb2ca8c4e0e42fca283a2.tar forums-e103b2f0cc8c8317ce4cb2ca8c4e0e42fca283a2.tar.gz forums-e103b2f0cc8c8317ce4cb2ca8c4e0e42fca283a2.tar.bz2 forums-e103b2f0cc8c8317ce4cb2ca8c4e0e42fca283a2.tar.xz forums-e103b2f0cc8c8317ce4cb2ca8c4e0e42fca283a2.zip |
[feature/dic] Fix parse errors
PHPBB3-10739
Diffstat (limited to 'phpBB/includes/cron/task')
-rw-r--r-- | phpBB/includes/cron/task/core/queue.php | 2 | ||||
-rw-r--r-- | phpBB/includes/cron/task/core/tidy_database.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/cron/task/core/queue.php b/phpBB/includes/cron/task/core/queue.php index c436c9bbad..3278ce9d76 100644 --- a/phpBB/includes/cron/task/core/queue.php +++ b/phpBB/includes/cron/task/core/queue.php @@ -23,7 +23,7 @@ if (!defined('IN_PHPBB')) class phpbb_cron_task_core_queue extends phpbb_cron_task_base { protected $phpbb_root_path; - protected $php_ext + protected $php_ext; protected $config; public function __construct($phpbb_root_path, $php_ext, phpbb_config $config) diff --git a/phpBB/includes/cron/task/core/tidy_database.php b/phpBB/includes/cron/task/core/tidy_database.php index 4b4679f203..c9f81cbb51 100644 --- a/phpBB/includes/cron/task/core/tidy_database.php +++ b/phpBB/includes/cron/task/core/tidy_database.php @@ -23,7 +23,7 @@ if (!defined('IN_PHPBB')) class phpbb_cron_task_core_tidy_database extends phpbb_cron_task_base { protected $phpbb_root_path; - protected $php_ext + protected $php_ext; protected $config; public function __construct($phpbb_root_path, $php_ext, phpbb_config $config) |