aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/install
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2017-01-15 11:25:55 +0100
committerTristan Darricau <github@nicofuma.fr>2017-01-15 11:25:55 +0100
commit0b5218cec1e384c38f11eff801ab79984625b582 (patch)
tree694446cbd7c84639cbe457010170552323e16359 /phpBB/phpbb/install
parent42e78004fbe9cce9a77f718a281d95b2c9b1e5d2 (diff)
parentabf7a4f6636d51f02ee9de0a359c5e784465a4ac (diff)
downloadforums-0b5218cec1e384c38f11eff801ab79984625b582.tar
forums-0b5218cec1e384c38f11eff801ab79984625b582.tar.gz
forums-0b5218cec1e384c38f11eff801ab79984625b582.tar.bz2
forums-0b5218cec1e384c38f11eff801ab79984625b582.tar.xz
forums-0b5218cec1e384c38f11eff801ab79984625b582.zip
Merge pull request #4647 from marc1706/ticket/15012
[ticket/15012] Use valid constructor in ftp_file_updater * marc1706/ticket/15012: [ticket/15012] Use valid constructor in ftp_file_updater
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;