mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-14 09:58:16 +01:00
Fixed swapped params.
This commit is contained in:
parent
8994de9d73
commit
d169912713
@ -157,7 +157,7 @@ class db
|
|||||||
for (var $i = 0; $i < count($rec); $i++)
|
for (var $i = 0; $i < count($rec); $i++)
|
||||||
{
|
{
|
||||||
$this->Record[$i] = $rec[$i];
|
$this->Record[$i] = $rec[$i];
|
||||||
$o = mssql_fetch_field($i, $this->Query_ID);
|
$o = mssql_fetch_field($this->Query_ID, $i);
|
||||||
$this->Record[$o->name] = $rec[$i];
|
$this->Record[$o->name] = $rec[$i];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user