Code Duplication    Length = 5-5 lines in 2 locations

src/wp-includes/script-loader.php 2 locations

@@ 1426-1430 (lines=5) @@
1423
			$concatenate_scripts = false;
1424
	}
1425
1426
	if ( ! isset($compress_scripts) ) {
1427
		$compress_scripts = defined('COMPRESS_SCRIPTS') ? COMPRESS_SCRIPTS : true;
1428
		if ( $compress_scripts && ( ! get_site_option('can_compress_scripts') || $compressed_output ) )
1429
			$compress_scripts = false;
1430
	}
1431
1432
	if ( ! isset($compress_css) ) {
1433
		$compress_css = defined('COMPRESS_CSS') ? COMPRESS_CSS : true;
@@ 1432-1436 (lines=5) @@
1429
			$compress_scripts = false;
1430
	}
1431
1432
	if ( ! isset($compress_css) ) {
1433
		$compress_css = defined('COMPRESS_CSS') ? COMPRESS_CSS : true;
1434
		if ( $compress_css && ( ! get_site_option('can_compress_scripts') || $compressed_output ) )
1435
			$compress_css = false;
1436
	}
1437
}
1438