diff options
| author | Cesar G <prototech91@gmail.com> | 2013-12-19 19:36:49 -0800 | 
|---|---|---|
| committer | Cesar G <prototech91@gmail.com> | 2013-12-19 19:36:49 -0800 | 
| commit | d512197bb9b8ec609746c7bf3e90c78449e89b7b (patch) | |
| tree | e540c0f7d0b9a75ea75f4f635f08a041ca379683 /phpBB/includes/functions_transfer.php | |
| parent | 9db8665a540cb5d066572bedf5ffe0280c0cdb65 (diff) | |
| download | forums-d512197bb9b8ec609746c7bf3e90c78449e89b7b.tar forums-d512197bb9b8ec609746c7bf3e90c78449e89b7b.tar.gz forums-d512197bb9b8ec609746c7bf3e90c78449e89b7b.tar.bz2 forums-d512197bb9b8ec609746c7bf3e90c78449e89b7b.tar.xz forums-d512197bb9b8ec609746c7bf3e90c78449e89b7b.zip | |
[ticket/12077] Fix another strict standards error.
PHPBB3-12077
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 fb3eec9e0b..9bec17ca8f 100644 --- a/phpBB/includes/functions_transfer.php +++ b/phpBB/includes/functions_transfer.php @@ -287,7 +287,7 @@ class ftp extends transfer  	/**  	* Requests data  	*/ -	function data() +	static public function data()  	{  		global $user; @@ -541,7 +541,7 @@ class ftp_fsock extends transfer  	/**  	* Requests data  	*/ -	function data() +	static public function data()  	{  		global $user; | 
