fixed date-type problem in restore reported on the german list

This commit is contained in:
Ralf Becker 2007-07-03 08:22:25 +00:00
parent bd1a7729c5
commit b8afdbe56b

View File

@ -302,7 +302,7 @@
}
$arr[$key] = str_replace(BACKSLASH_TOKEN,'\\',str_replace(array('\\\\','\\n','\\r','\\"'),array(BACKSLASH_TOKEN,"\n","\r",'"'),substr($field,1,-1)));
}
elseif ($keys && (strlen($field) > 64 || !is_numeric($field) && $field != 'NULL'))
elseif ($keys && strlen($field) > 24)
{
$arr[$key] = base64_decode($field);
}