diff options
author | Marc Alexander <admin@m-a-styles.de> | 2014-11-09 10:42:30 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2014-11-09 10:42:30 +0100 |
commit | 10b628a20a6549452c117a8733629d8bdc909faf (patch) | |
tree | a7d51393d674ab07c9fcbb7ca5d8fc459954445a | |
parent | 8e64652d80d181be6197465c7a98b13f712a5fa8 (diff) | |
parent | c4628bd92a509615621ad0b939bfd5fbf2e2aa18 (diff) | |
download | forums-10b628a20a6549452c117a8733629d8bdc909faf.tar forums-10b628a20a6549452c117a8733629d8bdc909faf.tar.gz forums-10b628a20a6549452c117a8733629d8bdc909faf.tar.bz2 forums-10b628a20a6549452c117a8733629d8bdc909faf.tar.xz forums-10b628a20a6549452c117a8733629d8bdc909faf.zip |
Merge pull request #3120 from Elsensee/ticket/13301
[ticket/13301] Fix called function in apche auth module
-rw-r--r-- | phpBB/phpbb/auth/provider/apache.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/auth/provider/apache.php b/phpBB/phpbb/auth/provider/apache.php index 9137a77210..aa5bf64335 100644 --- a/phpBB/phpbb/auth/provider/apache.php +++ b/phpBB/phpbb/auth/provider/apache.php @@ -137,7 +137,7 @@ class apache extends \phpbb\auth\provider\base return array( 'status' => LOGIN_SUCCESS_CREATE_PROFILE, 'error_msg' => false, - 'user_row' => user_row_apache($php_auth_user, $php_auth_pw), + 'user_row' => $this->user_row($php_auth_user, $php_auth_pw), ); } @@ -185,7 +185,7 @@ class apache extends \phpbb\auth\provider\base } // create the user if he does not exist yet - user_add(user_row_apache($php_auth_user, $php_auth_pw)); + user_add($this->user_row($php_auth_user, $php_auth_pw)); $sql = 'SELECT * FROM ' . USERS_TABLE . " |