1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-08 18:05:17 +02:00

Merge branch '3.2.x'

* 3.2.x:
  [ticket/15012] Use valid constructor in ftp_file_updater
This commit is contained in:
Tristan Darricau 2017-01-15 11:25:59 +01:00
commit 891fa43442
No known key found for this signature in database
GPG Key ID: 817043C2E29DB881

View File

@ -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;