Fixed regression on timed update
This commit is contained in:
@@ -47,7 +47,7 @@ getNextMonday(Wt::WDate current)
|
|||||||
{
|
{
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
current.addDays(1);
|
current = current.addDays(1);
|
||||||
} while (current.dayOfWeek() != 1);
|
} while (current.dayOfWeek() != 1);
|
||||||
|
|
||||||
return current;
|
return current;
|
||||||
@@ -58,7 +58,7 @@ getNextFirstOfMonth(Wt::WDate current)
|
|||||||
{
|
{
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
current.addDays(1);
|
current = current.addDays(1);
|
||||||
} while (current.day() != 1);
|
} while (current.day() != 1);
|
||||||
|
|
||||||
return current;
|
return current;
|
||||||
|
|||||||
Reference in New Issue
Block a user