diff options
author | rxu <rxu@mail.ru> | 2017-08-11 01:44:59 +0700 |
---|---|---|
committer | rxu <rxu@mail.ru> | 2017-08-11 01:44:59 +0700 |
commit | f7249f88393508fc130e282d362ae172775cd07c (patch) | |
tree | fe2e4ca4f330e946dbad4323a3ae94471d17f0f3 /phpBB | |
parent | d9a5c8e9182e0dffdebf09f4db33bd76e9574765 (diff) | |
download | forums-f7249f88393508fc130e282d362ae172775cd07c.tar forums-f7249f88393508fc130e282d362ae172775cd07c.tar.gz forums-f7249f88393508fc130e282d362ae172775cd07c.tar.bz2 forums-f7249f88393508fc130e282d362ae172775cd07c.tar.xz forums-f7249f88393508fc130e282d362ae172775cd07c.zip |
[ticket/15314] Fix convert class constructor
PHPBB3-15314
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/install/convert/convert.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/convert/convert.php b/phpBB/install/convert/convert.php index 03913d6ae6..3e9e562f2e 100644 --- a/phpBB/install/convert/convert.php +++ b/phpBB/install/convert/convert.php @@ -53,7 +53,7 @@ class convert var $p_master; - function convert($p_master) + function __construct($p_master) { $this->p_master = $p_master; } |