1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

[ticket/10763] Do not call non-static transfer() statically

PHPBB3-10763
This commit is contained in:
Joas Schilling
2014-03-09 21:53:21 +01:00
parent 38aef98a69
commit 37dace4967

View File

@@ -279,7 +279,7 @@ class ftp extends transfer
}
// Init some needed values
transfer::transfer();
$this->transfer();
return;
}
@@ -533,7 +533,7 @@ class ftp_fsock extends transfer
}
// Init some needed values
transfer::transfer();
$this->transfer();
return;
}