1
0
mirror of https://github.com/EGroupware/egroupware.git synced 2025-07-10 03:16:57 +02:00

fixed a typo in column_data_implode

This commit is contained in:
Ralf Becker
2004-02-28 23:56:13 +00:00
parent 3b5d09927e
commit 1cc9c515aa

@ -812,7 +812,7 @@
{ {
if (!$only || in_array($key,$only)) if (!$only || in_array($key,$only))
{ {
$column_type = is_array($column_definitions) ? @$colum_definitions[$key]['type'] : False; $column_type = is_array($column_definitions) ? @$column_definitions[$key]['type'] : False;
$values[] = ($use_key ? $key.'=' : '') . $this->quote($data,$column_type); $values[] = ($use_key ? $key.'=' : '') . $this->quote($data,$column_type);
} }
} }