Skip to content

Commit da140ef

Browse files
committed
Library/User: Fix upper username for some emulators
1 parent c9cecb1 commit da140ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

application/libraries/User.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public function getAccountPassword(string $username, string $password): array
7575
*/
7676
public function setUserDetails(string $username, string $password): int
7777
{
78-
$check = $this->CI->external_account_model->initialize($username);
78+
$check = $this->CI->external_account_model->initialize(strtoupper($username));
7979

8080
if (!$check) {
8181
return 1;

0 commit comments

Comments
 (0)