phpBB

Code Changes

File: phpbb/auth/provider/apache.php

  Unmodified   Added   Modified   Removed
Line 137Line 137
			return array(
'status' => LOGIN_SUCCESS_CREATE_PROFILE,
'error_msg' => false,

			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),

			);
}


			);
}


Line 185Line 185
			}

// create the user if he does not exist yet

			}

// 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 . "


$sql = 'SELECT *
FROM ' . USERS_TABLE . "