Skip to content

Commit 424ed1d

Browse files
iroquetaBeta Bot
authored andcommitted
Cherry pick branch 'genexuslabs:fix/CtotWithEmptyDates' into beta
1 parent 6c55c05 commit 424ed1d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

common/src/main/java/com/genexus/LocalUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -797,7 +797,7 @@ private static boolean isNullTimeValue(String value, boolean isAMPM)
797797
}
798798

799799
private static boolean isNullDateValue(String value) {
800-
return value.equals("00/00/00") || value.equals("00/00/0000");
800+
return value.equals("00/00/00") || value.equals("00/00/0000") || value.equals("0000/00/00");
801801
}
802802

803803
public static void main(String arg[])

0 commit comments

Comments
 (0)