silently fix skiped minutes or times with just one digit, as parser is quite pedantic ;-)

This commit is contained in:
Ralf Becker
2014-01-29 13:10:31 +00:00
parent db3422fccb
commit a659b49f51
3 changed files with 34 additions and 12 deletions

View File

@ -285,7 +285,7 @@ var et2_inputWidget = et2_valueWidget.extend([et2_IInput,et2_ISubmitListener],
// Check for required
if(this.options && this.options.needed && !this.options.readonly && (this.getValue() == null || this.getValue().valueOf() == ''))
{
messages.push(this.egw().lang('input required'));
messages.push(this.egw().lang('Field must not be empty !!!'));
ok = false;
}
return ok;