Code Duplication    Length = 3-3 lines in 2 locations

modules/custom-css/csstidy/class.csstidy_optimise.php 2 locations

@@ 660-662 (lines=3) @@
657
				if ($have['bg'] === false && (substr($str_value[$i][$j], 0, 4) === 'url(' || $str_value[$i][$j] === 'none')) {
658
					$return['background-image'] .= $str_value[$i][$j] . ',';
659
					$have['bg'] = true;
660
				} elseif (in_array($str_value[$i][$j], $repeat, true)) {
661
					$return['background-repeat'] .= $str_value[$i][$j] . ',';
662
				} elseif (in_array($str_value[$i][$j], $attachment, true)) {
663
					$return['background-attachment'] .= $str_value[$i][$j] . ',';
664
				} elseif (in_array($str_value[$i][$j], $clip, true) && !$have['clip']) {
665
					$return['background-clip'] .= $str_value[$i][$j] . ',';
@@ 667-669 (lines=3) @@
664
				} elseif (in_array($str_value[$i][$j], $clip, true) && !$have['clip']) {
665
					$return['background-clip'] .= $str_value[$i][$j] . ',';
666
					$have['clip'] = true;
667
				} elseif (in_array($str_value[$i][$j], $origin, true)) {
668
					$return['background-origin'] .= $str_value[$i][$j] . ',';
669
				} elseif ($str_value[$i][$j]{0} === '(') {
670
					$return['background-size'] .= substr($str_value[$i][$j], 1, -1) . ',';
671
				} elseif (in_array($str_value[$i][$j], $pos, true) || is_numeric($str_value[$i][$j]{0}) || $str_value[$i][$j]{0} === null || $str_value[$i][$j]{0} === '-' || $str_value[$i][$j]{0} === '.') {
672
					$return['background-position'] .= $str_value[$i][$j];