aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_transfer.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-03-09 21:53:21 +0100
committerJoas Schilling <nickvergessen@gmx.de>2014-03-09 21:53:21 +0100
commit37dace4967c39683421fc8f41ba7a25b9d8dc753 (patch)
treee51e01c6ccc12177a1713e3442a7e106007bb674 /phpBB/includes/functions_transfer.php
parent38aef98a697841c5c03d099ae4b9b3989b01a315 (diff)
downloadforums-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.php4
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;
}