diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-03-09 21:53:21 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-03-09 21:53:21 +0100 |
commit | 37dace4967c39683421fc8f41ba7a25b9d8dc753 (patch) | |
tree | e51e01c6ccc12177a1713e3442a7e106007bb674 /phpBB/includes/functions_transfer.php | |
parent | 38aef98a697841c5c03d099ae4b9b3989b01a315 (diff) | |
download | forums-37dace4967c39683421fc8f41ba7a25b9d8dc753.tar forums-37dace4967c39683421fc8f41ba7a25b9d8dc753.tar.gz forums-37dace4967c39683421fc8f41ba7a25b9d8dc753.tar.bz2 forums-37dace4967c39683421fc8f41ba7a25b9d8dc753.tar.xz forums-37dace4967c39683421fc8f41ba7a25b9d8dc753.zip |
[ticket/10763] Do not call non-static transfer() statically
PHPBB3-10763
Diffstat (limited to 'phpBB/includes/functions_transfer.php')
-rw-r--r-- | phpBB/includes/functions_transfer.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/functions_transfer.php b/phpBB/includes/functions_transfer.php index 9bec17ca8f..17b458d2cb 100644 --- a/phpBB/includes/functions_transfer.php +++ b/phpBB/includes/functions_transfer.php @@ -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; } |