X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/kivitendo-erp.git/blobdiff_plain/300f3739cfe93d10a867a778a1430068c00c32a8..1a254be1009a000fbe872878088da9c8b69208f8:/js/common.js diff --git a/js/common.js b/js/common.js index 279ff8dae..298d5a2cb 100644 --- a/js/common.js +++ b/js/common.js @@ -58,7 +58,7 @@ function check_right_number_format(input_name) { if(decpoint && decpoint == ','){ test_val = test_val.replace(/,/g, '.'); } - var forbidden = test_val.match(/[^-\+\/\*\.0-9\ ]/g ); + var forbidden = test_val.match(/[^\s\d\(\)\-\+\*\/\.]/g); if (forbidden && forbidden.length > 0 ){ return show_alert_and_focus(input_name, wrongNumberFormat); }