Code Duplication    Length = 3-3 lines in 2 locations

functions.php 2 locations

@@ 352-354 (lines=3) @@
349
	elseif ($secs >= $dayCut && $secs < $weekCut) {
350
		$output = round($secs / $day) . " day";
351
	}
352
	elseif ($secs >= $weekCut && $secs < $month) {
353
		$output = round($secs / $week) . " week";
354
	}
355
	elseif ($secs >= $month && $secs < $year) {
356
		$output = round($secs / $month) . " month";
357
	}
@@ 355-357 (lines=3) @@
352
	elseif ($secs >= $weekCut && $secs < $month) {
353
		$output = round($secs / $week) . " week";
354
	}
355
	elseif ($secs >= $month && $secs < $year) {
356
		$output = round($secs / $month) . " month";
357
	}
358
	elseif ($secs >= $year && $secs < $year * 10) {
359
		$output = round($secs / $year) . " year";
360
	}