From 9d34170b3204fbad3f864226c77b32d7255cf19a Mon Sep 17 00:00:00 2001 From: Cesar G Date: Thu, 19 Dec 2013 17:14:24 -0800 Subject: [PATCH 1/3] [ticket/12077] Fix strict standards error. PHPBB3-12077 --- phpBB/includes/functions_transfer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/includes/functions_transfer.php b/phpBB/includes/functions_transfer.php index 07c9171c60..fb3eec9e0b 100644 --- a/phpBB/includes/functions_transfer.php +++ b/phpBB/includes/functions_transfer.php @@ -234,7 +234,7 @@ class transfer /** * Determine methods able to be used */ - function methods() + static public function methods() { $methods = array(); $disabled_functions = explode(',', @ini_get('disable_functions')); From 9db8665a540cb5d066572bedf5ffe0280c0cdb65 Mon Sep 17 00:00:00 2001 From: Cesar G Date: Thu, 19 Dec 2013 17:15:15 -0800 Subject: [PATCH 2/3] [ticket/12077] Add missing space after template block name. PHPBB3-12077 --- phpBB/adm/style/acp_language.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/adm/style/acp_language.html b/phpBB/adm/style/acp_language.html index d4fd572376..23c37b1ba0 100644 --- a/phpBB/adm/style/acp_language.html +++ b/phpBB/adm/style/acp_language.html @@ -147,7 +147,7 @@ -   {L_UPLOAD_METHOD}{L_COLON}  id="method" checked="checked" value="{buttons.VALUE}" name="method" /> {buttons.VALUE}  +   {L_UPLOAD_METHOD}{L_COLON}  id="method" checked="checked" value="{buttons.VALUE}" name="method" /> {buttons.VALUE}  From d512197bb9b8ec609746c7bf3e90c78449e89b7b Mon Sep 17 00:00:00 2001 From: Cesar G Date: Thu, 19 Dec 2013 19:36:49 -0800 Subject: [PATCH 3/3] [ticket/12077] Fix another strict standards error. PHPBB3-12077 --- phpBB/includes/functions_transfer.php | 4 ++-- 1 file 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;