Fixed typo in textual month detection, which caused date detection problems in december only.

This commit is contained in:
Andre Lorbach 2008-12-15 17:07:22 +01:00
parent 11a4640e1d
commit 4f1bce6046

View File

@ -1180,7 +1180,7 @@ function GetMonthFromString($szMonth)
return 10;
case "Nov":
return 11;
case "Dez":
case "Dec":
return 12;
}
}