Skip to content

Commit

Permalink
Fixed issue #8226: Error when using mask mm/yy in date question
Browse files Browse the repository at this point in the history
Dev: error appeared while entering a date in a date time question
Dev: with settings "dropdown boxes yes" and a date mask without
Dev: day (eg. YY/MM)
  • Loading branch information
mfaber committed Oct 2, 2013
1 parent 446139c commit 72dd57d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/date.js
Expand Up @@ -91,7 +91,7 @@ function dateUpdater() {
{
iMonth=$('#month'+thisid).val();
}
if ($('#month'+thisid).size()==0)
if ($('#day'+thisid).size()==0)
{
iDay='01';
}
Expand Down

0 comments on commit 72dd57d

Please sign in to comment.