aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/install
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2017-01-14 22:48:24 +0100
committerMarc Alexander <admin@m-a-styles.de>2017-01-14 22:48:24 +0100
commitabf7a4f6636d51f02ee9de0a359c5e784465a4ac (patch)
tree1271262723cc7883f9874206d57dd0d966a9d9c7 /phpBB/phpbb/install
parentd226059b988fd5f8963858ca698253ad6c77fea0 (diff)
downloadforums-abf7a4f6636d51f02ee9de0a359c5e784465a4ac.tar
forums-abf7a4f6636d51f02ee9de0a359c5e784465a4ac.tar.gz
forums-abf7a4f6636d51f02ee9de0a359c5e784465a4ac.tar.bz2
forums-abf7a4f6636d51f02ee9de0a359c5e784465a4ac.tar.xz
forums-abf7a4f6636d51f02ee9de0a359c5e784465a4ac.zip
[ticket/15012] Use valid constructor in ftp_file_updater
PHPBB3-15012
Diffstat (limited to 'phpBB/phpbb/install')
-rw-r--r--phpBB/phpbb/install/helper/file_updater/ftp_file_updater.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/install/helper/file_updater/ftp_file_updater.php b/phpBB/phpbb/install/helper/file_updater/ftp_file_updater.php
index 258a035768..5cdc331cbc 100644
--- a/phpBB/phpbb/install/helper/file_updater/ftp_file_updater.php
+++ b/phpBB/phpbb/install/helper/file_updater/ftp_file_updater.php
@@ -47,7 +47,7 @@ class ftp_file_updater implements file_updater_interface
* @param string $phpbb_root_path
* @param string $php_ext
*/
- public function __constructor(update_helper $update_helper, $phpbb_root_path, $php_ext)
+ public function __construct(update_helper $update_helper, $phpbb_root_path, $php_ext)
{
$this->transfer = null;
$this->update_helper = $update_helper;