mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:15 +01:00
fixed wrong comparison with NULL in column_data_implode
This commit is contained in:
parent
d9ba5f9ab8
commit
0af62b80b3
@ -1126,6 +1126,10 @@
|
||||
{
|
||||
$values[] = $data;
|
||||
}
|
||||
elseif ($use_key === True && !$not_null && is_null($data))
|
||||
{
|
||||
$values[] = $this->name_quote($key) .' IS NULL';
|
||||
}
|
||||
else
|
||||
{
|
||||
$values[] = ($use_key===True ? $this->name_quote($key) . '=' : '') . $this->quote($data,$column_type,$not_null);
|
||||
|
Loading…
Reference in New Issue
Block a user