X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=js%2Fcommon.js;h=298d5a2cbee2fe4cdf2e36ef1c9d0618e0e2a48f;hb=cc47124952e133ee4edbc116d927b90040dc8a05;hp=279ff8dae9213555994a496f89fce2815c9075f8;hpb=9c477cc85df636b3d7fdd285de1f3b4a7d81d9a2;p=kivitendo-erp.git 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); }