Hi John, is there any reason why this line should read:
in function doquote()
645: if (strlen($val)>1 &&
instead of
645: if (strlen($val)>0 &&
As it stands, all chars of length 1 will not be quoted, and causes active record replace/updates of fields with char 1 to fail (being inserted unquoted)
I've modified mine, but was wondering if I was missing something?
Strange this isn't picked up, no one using active record maybe? :)
thanks |