1
0
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:
Klas Lindfors 2012-06-14 13:00:13 +02:00
parent 04ce8662de
commit a739667891

View File

@ -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);
}
/**