X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=plugins%2FMonthlyQuota.class.php;h=c8559ad46371f1cb0166034923044fde0e746291;hb=acf9b73aeba337d836b1cdf2c1bb19d4106aa967;hp=21854672bc2e0bef16fd938e1806649a38b0779e;hpb=da39950fb8192f48ad40f6777ff3c5cd52459bcd;p=timetracker.git diff --git a/plugins/MonthlyQuota.class.php b/plugins/MonthlyQuota.class.php index 21854672..c8559ad4 100644 --- a/plugins/MonthlyQuota.class.php +++ b/plugins/MonthlyQuota.class.php @@ -104,7 +104,7 @@ class MonthlyQuota { // Iterate from 1st up to selected date. $workdaysFrom1st = 0; for ($i = 1; $i <= $selected_date->mDate; $i++) { - $date = "$selected_date->mYear-$selected_date->mMonth-$i"; + $date = ttTimeHelper::dateInDatabaseFormat($selected_date->mYear, $selected_date->mMonth, $i); if (!ttTimeHelper::isWeekend($date) && !ttTimeHelper::isHoliday($date)) { $workdaysFrom1st++; } @@ -139,6 +139,7 @@ class MonthlyQuota { // Iterate through the entire month. for ($i = 1; $i <= $daysInMonth; $i++) { $date = "$year-$month-$i"; + $date = ttTimeHelper::dateInDatabaseFormat($year, $month, $i); if (!ttTimeHelper::isWeekend($date) && !ttTimeHelper::isHoliday($date)) { $workdaysInMonth++; }