fix DBI binding for negative integers, shoudl fix CCH update, RT#14243
[freeside.git] / FS / FS / Record.pm
index b67f15c..e52d094 100644 (file)
@@ -274,7 +274,7 @@ sub _bind_type {
 
   my $bind_type = { TYPE => SQL_VARCHAR };
 
-  if ( $type =~ /(big)?(int|serial)/i && $value =~ /^\d+(\.\d+)?$/ ) {
+  if ( $type =~ /(big)?(int|serial)/i && $value =~ /^-?\d+(\.\d+)?$/ ) {
 
     $bind_type = { TYPE => SQL_INTEGER };