aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_transfer.php
diff options
context:
space:
mode:
authorNathan Guse <nathaniel.guse@gmail.com>2014-03-10 20:51:20 -0500
committerNathan Guse <nathaniel.guse@gmail.com>2014-03-10 20:51:20 -0500
commit23ea83342556ed16215513b877a9c90ace186257 (patch)
tree3581af5a54525642476b12ab3cc5db7df0c54429 /phpBB/includes/functions_transfer.php
parentf7020fb5d1368020cf780deaeba56fee56e3dcfa (diff)
parent521c6c7d75b8c929dfe7870e6d9c8b32300bc29a (diff)
downloadforums-23ea83342556ed16215513b877a9c90ace186257.tar
forums-23ea83342556ed16215513b877a9c90ace186257.tar.gz
forums-23ea83342556ed16215513b877a9c90ace186257.tar.bz2
forums-23ea83342556ed16215513b877a9c90ace186257.tar.xz
forums-23ea83342556ed16215513b877a9c90ace186257.zip
Merge pull request #2101 from nickvergessen/ticket/10763
[ticket/10763] Do not call non-static functions statically
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;
}