aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2013-07-14 16:28:30 -0400
committerNils Adermann <naderman@naderman.de>2013-07-14 16:28:30 -0400
commitadc58ba0848a23555044dd76d0b03b9055c81f40 (patch)
tree031a309aef96ddb7dc79f7721db035238df1f7ce /phpBB/phpbb/error_collector.php
parent[ticket/11700] Load namespaced classes in tests (diff)
downloadphpbb-adc58ba0848a23555044dd76d0b03b9055c81f40.tar.gz
phpbb-adc58ba0848a23555044dd76d0b03b9055c81f40.tar.bz2
phpbb-adc58ba0848a23555044dd76d0b03b9055c81f40.zip
[ticket/11700] Use a new style constructor for the error collector
PHPBB3-11700
Diffstat (limited to 'phpBB/phpbb/error_collector.php')
-rw-r--r--phpBB/phpbb/error_collector.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/error_collector.php b/phpBB/phpbb/error_collector.php
index 358da747b8..0a6462d046 100644
--- a/phpBB/phpbb/error_collector.php
+++ b/phpBB/phpbb/error_collector.php
@@ -19,7 +19,7 @@ class phpbb_error_collector
{
var $errors;
- function phpbb_error_collector()
+ function __construct()
{
$this->errors = array();
}