mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
Merge pull request #1938 from prototech/ticket/12077
[ticket/12077] Ensure that valid upload methods are presented to user in language packs page.
This commit is contained in:
@@ -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'));
|
||||
@@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user