mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-28 10:53:39 +01:00
"Fix for bug #1885: egw_db->row doesn't work as expected
reverted r25031, as it returns the first record with numeric indexes (it's anyway a depricated function)"
This commit is contained in:
parent
3d5a57ca7b
commit
fac44715bb
@ -968,7 +968,17 @@ class egw_db
|
||||
{
|
||||
return False;
|
||||
}
|
||||
return $strip ? self::strip_array_keys($this->Record,$strip) : $this->Record;
|
||||
$result = array();
|
||||
foreach($this->Record as $column => $value)
|
||||
{
|
||||
if (!is_numeric($column))
|
||||
{
|
||||
if ($strip) $column = str_replace($strip,'',$column);
|
||||
|
||||
$result[$column] = $value;
|
||||
}
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user