mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
code style fix
This commit is contained in:
parent
74f700882c
commit
5fb1b71cb6
1 changed files with 6 additions and 6 deletions
12
lib/Cake/Controller/Component/Auth/BasicAuthenticate.php
Normal file → Executable file
12
lib/Cake/Controller/Component/Auth/BasicAuthenticate.php
Normal file → Executable file
|
@ -84,12 +84,12 @@ class BasicAuthenticate extends BaseAuthenticate {
|
|||
public function getUser(CakeRequest $request) {
|
||||
if(!isset($_SERVER['PHP_AUTH_USER'])) {
|
||||
$httpAuthorization = $request->header('Authorization');
|
||||
if ($httpAuthorization !== false && strlen($httpAuthorization) > 0 && strpos($httpAuthorization, 'basic') !== false) {
|
||||
list($_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW']) = explode(':', base64_decode(substr($httpAuthorization, 6)));
|
||||
if(strlen($_SERVER['PHP_AUTH_USER']) === 0 || strlen($_SERVER['PHP_AUTH_PW']) === 0) {
|
||||
unset($_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW']);
|
||||
}
|
||||
}
|
||||
if($httpAuthorization !== false && strlen($httpAuthorization) > 0 && strpos($httpAuthorization, 'basic') !== false) {
|
||||
list($_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW']) = explode(':', base64_decode(substr($httpAuthorization, 6)));
|
||||
if(strlen($_SERVER['PHP_AUTH_USER']) === 0 || strlen($_SERVER['PHP_AUTH_PW']) === 0) {
|
||||
unset($_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW']);
|
||||
}
|
||||
}
|
||||
}
|
||||
$username = env('PHP_AUTH_USER');
|
||||
$pass = env('PHP_AUTH_PW');
|
||||
|
|
Loading…
Reference in a new issue