Code Duplication    Length = 5-5 lines in 2 locations

wp-includes/script-loader.php 2 locations

@@ 1327-1331 (lines=5) @@
1324
			$concatenate_scripts = false;
1325
	}
1326
1327
	if ( ! isset($compress_scripts) ) {
1328
		$compress_scripts = defined('COMPRESS_SCRIPTS') ? COMPRESS_SCRIPTS : true;
1329
		if ( $compress_scripts && ( ! get_site_option('can_compress_scripts') || $compressed_output ) )
1330
			$compress_scripts = false;
1331
	}
1332
1333
	if ( ! isset($compress_css) ) {
1334
		$compress_css = defined('COMPRESS_CSS') ? COMPRESS_CSS : true;
@@ 1333-1337 (lines=5) @@
1330
			$compress_scripts = false;
1331
	}
1332
1333
	if ( ! isset($compress_css) ) {
1334
		$compress_css = defined('COMPRESS_CSS') ? COMPRESS_CSS : true;
1335
		if ( $compress_css && ( ! get_site_option('can_compress_scripts') || $compressed_output ) )
1336
			$compress_css = false;
1337
	}
1338
}
1339