Code Duplication    Length = 4-4 lines in 2 locations

includes/libs/mime/IEContentAnalyzer.php 2 locations

@@ 809-812 (lines=4) @@
806
			}
807
808
			// XBM checks
809
			if ( !strncasecmp( $remainder, $xbmMagic1, strlen( $xbmMagic1 ) ) ) {
810
				$found['xbm1'] = true;
811
				continue;
812
			}
813
			if ( $curChar == '_' ) {
814
				if ( isset( $found['xbm2'] ) ) {
815
					if ( !strncasecmp( $remainder, $xbmMagic3, strlen( $xbmMagic3 ) ) ) {
@@ 815-818 (lines=4) @@
812
			}
813
			if ( $curChar == '_' ) {
814
				if ( isset( $found['xbm2'] ) ) {
815
					if ( !strncasecmp( $remainder, $xbmMagic3, strlen( $xbmMagic3 ) ) ) {
816
						$found['xbm'] = true;
817
						break;
818
					}
819
				} elseif ( isset( $found['xbm1'] ) ) {
820
					if ( !strncasecmp( $remainder, $xbmMagic2, strlen( $xbmMagic2 ) ) ) {
821
						$found['xbm2'] = true;