mirror of
https://github.com/Yubico/yubikey-val.git
synced 2025-02-01 01:52:18 +01:00
lowercase columns from oracle, we use lower everywhere.
This commit is contained in:
parent
04ce8662de
commit
a739667891
@ -86,7 +86,8 @@ class DbImpl extends Db
|
||||
if(!$result) $result = $this->result;
|
||||
if(!$result) return null;
|
||||
|
||||
return oci_fetch_array($result, OCI_ASSOC);
|
||||
$res = oci_fetch_array($result, OCI_ASSOC);
|
||||
return array_change_key_case($res, CASE_LOWER);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user