currentDate = new Date(currentDate);
currentDate = new Date(currentDate.getUTCFullYear(), currentDate.getUTCMonth(), currentDate.getUTCDate());
currentDate.setDate(currentDate.getDate());
- d = currentDate.getDate() + 2;
+ d = currentDate.getDate() + 1;
if (d <= 9) {
d = '0' + d;
}
currentDate = new Date(currentDate);
currentDate = new Date(currentDate.getUTCFullYear(), currentDate.getUTCMonth(), currentDate.getUTCDate());
currentDate.setDate(currentDate.getDate());
- d = currentDate.getDate() + 2;
+ d = currentDate.getDate() + 1;
if (d <= 9) {
d = '0' + d;
}