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

View File

@ -812,7 +812,7 @@
{
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);
}
}