mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:50 +01:00
allow sql fragments in Api\Storage\Base::delete as in other places
This commit is contained in:
parent
790fa8c71d
commit
cfe9204f77
@ -776,15 +776,19 @@ class Base
|
||||
$data = $keys; $keys = array();
|
||||
foreach($this->db_cols as $db_col => $col)
|
||||
{
|
||||
if (is_int($db_col))
|
||||
{
|
||||
$keys[] = $col;
|
||||
}
|
||||
elseif (isset($data[$col]))
|
||||
if (isset($data[$col]))
|
||||
{
|
||||
$keys[$db_col] = $col;
|
||||
}
|
||||
}
|
||||
// keep sql fragments (with integer key)
|
||||
foreach($data as $key => $val)
|
||||
{
|
||||
if (is_int($key))
|
||||
{
|
||||
$keys[] = $val;
|
||||
}
|
||||
}
|
||||
}
|
||||
$data = $this->data2db($data);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user