Code Duplication    Length = 2-2 lines in 2 locations

bundles/lib/Date.php 2 locations

@@ 46-47 (lines=2) @@
43
	{
44
		$iFirstDayInYear = date("N",mktime(0, 0, 0, 1, 1, $iYear));
45
46
		if ($iFirstDayInYear < 5) { $iShift = -($iFirstDayInYear - 1) * 86400; }
47
		else { $iShift = (8 - $iFirstDayInYear) * 86400; }
48
49
		if ($iWeek > 1) { $iWeekInSeconds = ($iWeek-1) * 604800; }
50
		else { $iWeekInSeconds = 0; }
@@ 163-164 (lines=2) @@
160
	{
161
		$iFirstDayInYear = date("N",mktime(0, 0, 0, 1, 1, $iYear));
162
163
		if ($iFirstDayInYear < 5) { $iShift = -($iFirstDayInYear - 1) * 86400; }
164
		else { $iShift = (8 - $iFirstDayInYear) * 86400; }
165
166
		if ($iWeek > 1) { $iWeekInSeconds = ($iWeek-1) * 604800; }
167
		else { $iWeekInSeconds = 0; }