mirror of
https://github.com/dg/dibi.git
synced 2025-08-08 15:16:58 +02:00
DibiResultInfo: fixed case insensitivity
This commit is contained in:
@@ -390,7 +390,7 @@ class DibiResultInfo extends DibiObject
|
||||
$this->columns = array();
|
||||
$reflector = $this->driver instanceof IDibiReflector ? $this->driver : NULL;
|
||||
foreach ($this->driver->getResultColumns() as $info) {
|
||||
$this->columns[] = $this->names[$info['name']] = new DibiColumnInfo($reflector, $info);
|
||||
$this->columns[] = $this->names[strtolower($info['name'])] = new DibiColumnInfo($reflector, $info);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user