X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=js%2Fcommon.js;h=43bb7de4de81f12f0b81a62309ad00bf8038d3eb;hb=ed04f337a0e565a3d0621a10bd273298e33c7fa1;hp=8ab2a5bc8f9c00c4ac95ac3b3ceca620db812951;hpb=6c016a500be8c5de4e457d1a26bd349343ac5e61;p=kivitendo-erp.git diff --git a/js/common.js b/js/common.js index 8ab2a5bc8..43bb7de4d 100644 --- a/js/common.js +++ b/js/common.js @@ -70,7 +70,7 @@ function check_right_date_format(input_name) { // 31122014 -> 12.04.2014 // 12312014 -> 12/31/2014 // 31122014 -> 31/12/2014 - + if (input_name.value.match(/^\d{8}$/)) { input_name.value = input_name.value.replace(/^(\d\d)(\d\d)(\d\d\d\d)$/, "$1" + seperator + "$2" + seperator + "$3") } else if (input_name.value.match(/^\d{6}$/)) { @@ -90,7 +90,7 @@ function check_right_date_format(input_name) { var month = today.getMonth() + 1; var year = today.getYear(); if( day.length == 1 && day < 10) { - day='0'+day; + day='0'+day; }; if(month<10) { month='0'+month; @@ -100,7 +100,7 @@ function check_right_date_format(input_name) { input_name.value = day + seperator + month + seperator + year; } else { input_name.value = month + seperator + day + seperator + year; - } + } }; }