@@ -15,13 +15,13 @@ discard block |
||
15 | 15 | |
16 | 16 | use OcLegacy\Util\PasswordCrypt; |
17 | 17 | |
18 | -define('LOGIN_UNKNOWN_ERROR', -1); // unknown error occurred |
|
19 | -define('LOGIN_OK', 0); // login succeeded |
|
20 | -define('LOGIN_BADUSERPW', 1); // bad username or password |
|
21 | -define('LOGIN_TOOMUCHLOGINS', 2); // too many logins in short time |
|
22 | -define('LOGIN_USERNOTACTIVE', 3); // the userAccount locked |
|
18 | +define('LOGIN_UNKNOWN_ERROR', -1); // unknown error occurred |
|
19 | +define('LOGIN_OK', 0); // login succeeded |
|
20 | +define('LOGIN_BADUSERPW', 1); // bad username or password |
|
21 | +define('LOGIN_TOOMUCHLOGINS', 2); // too many logins in short time |
|
22 | +define('LOGIN_USERNOTACTIVE', 3); // the userAccount locked |
|
23 | 23 | define('LOGIN_EMPTY_USERPASSWORD', 4); // given username/password was empty |
24 | -define('LOGIN_LOGOUT_OK', 5); // logout was successful |
|
24 | +define('LOGIN_LOGOUT_OK', 5); // logout was successful |
|
25 | 25 | |
26 | 26 | // login times in seconds |
27 | 27 | define('LOGIN_TIME', 60 * 60); |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | |
70 | 70 | // TODO good input evaluation |
71 | 71 | if ($cookie->is_set('userid') && $cookie->is_set('username')) { |
72 | - $this->userid = (int) $cookie->get('userid'); |
|
72 | + $this->userid = (int)$cookie->get('userid'); |
|
73 | 73 | $this->username = $cookie->get('username'); |
74 | 74 | $this->permanent = (($cookie->get('permanent') + 0) == 1); |
75 | 75 | $this->lastlogin = $cookie->get('lastlogin'); |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | public function pStoreCookie(): void |
101 | 101 | { |
102 | 102 | global $cookie; |
103 | - $cookie->set('userid', (int) $this->userid); |
|
103 | + $cookie->set('userid', (int)$this->userid); |
|
104 | 104 | $cookie->set('username', $this->username); |
105 | 105 | $cookie->set('permanent', ($this->permanent === true ? 1 : 0)); |
106 | 106 | $cookie->set('lastlogin', $this->lastlogin); |
@@ -294,7 +294,7 @@ discard block |
||
294 | 294 | $rUser['user_id'], |
295 | 295 | ($permanent != false ? 1 : 0) |
296 | 296 | ); |
297 | - $this->userid = (int) $rUser['user_id']; |
|
297 | + $this->userid = (int)$rUser['user_id']; |
|
298 | 298 | $this->username = $rUser['username']; |
299 | 299 | $this->permanent = $permanent; |
300 | 300 | $this->lastlogin = date('Y-m-d H:i:s'); |
@@ -340,7 +340,7 @@ discard block |
||
340 | 340 | ); |
341 | 341 | if ($rUser = sql_fetch_assoc($rs)) { |
342 | 342 | $this->username = $rUser['username']; |
343 | - $this->userid = (int) $rUser['user_id']; |
|
343 | + $this->userid = (int)$rUser['user_id']; |
|
344 | 344 | $this->admin = $rUser['admin']; |
345 | 345 | $this->verified = true; |
346 | 346 | sqlf("UPDATE `user` SET `user`.`last_login`=NOW() WHERE `user`.`user_id`='&1'", $this->userid); |
@@ -13,14 +13,14 @@ |
||
13 | 13 | |
14 | 14 | public function push_pos(&$pos): void |
15 | 15 | { |
16 | - $this->stack[count($this->stack)] =& $pos; |
|
17 | - $this->stack_ref =& $pos; |
|
16 | + $this->stack[count($this->stack)] = & $pos; |
|
17 | + $this->stack_ref = & $pos; |
|
18 | 18 | } |
19 | 19 | |
20 | 20 | public function pop_pos(): void |
21 | 21 | { |
22 | 22 | unset($this->stack[count($this->stack) - 1]); |
23 | - $this->stack_ref =& $this->stack[count($this->stack) - 1]; |
|
23 | + $this->stack_ref = & $this->stack[count($this->stack) - 1]; |
|
24 | 24 | } |
25 | 25 | |
26 | 26 | /** |
@@ -11,7 +11,7 @@ |
||
11 | 11 | $opt['rootpath'] = __DIR__ . '/../'; |
12 | 12 | |
13 | 13 | spl_autoload_register( |
14 | - function ($className): void { |
|
14 | + function($className): void { |
|
15 | 15 | if (!preg_match('/^[\w]{1,}$/', $className)) { |
16 | 16 | return; |
17 | 17 | } |