X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/38ca813a0e312e2768e5b9519f0415cd0aa84781..38ac4bc40322ecdc4052db4263466573e01fa51f:/wp-admin/load-scripts.php diff --git a/wp-admin/load-scripts.php b/wp-admin/load-scripts.php index 95a0c0cc..d6ff5ad5 100644 --- a/wp-admin/load-scripts.php +++ b/wp-admin/load-scripts.php @@ -3,7 +3,7 @@ /** * Disable error reporting * - * Set this to error_reporting( E_ALL ) or error_reporting( E_ALL | E_STRICT ) for debugging + * Set this to error_reporting( -1 ) for debugging. */ error_reporting(0); @@ -21,7 +21,6 @@ function __() {} */ function _x() {} - /** * @ignore */ @@ -52,6 +51,11 @@ function is_lighttpd_before_150() {} */ function add_action() {} +/** + * @ignore + */ +function did_action() {} + /** * @ignore */ @@ -92,6 +96,13 @@ function includes_url() {} */ function wp_guess_url() {} +if ( ! function_exists( 'json_encode' ) ) : +/** + * @ignore + */ +function json_encode() {} +endif; + function get_file($path) { if ( function_exists('realpath') ) @@ -103,8 +114,12 @@ function get_file($path) { return @file_get_contents($path); } -$load = preg_replace( '/[^a-z0-9,_-]+/i', '', $_GET['load'] ); -$load = explode(',', $load); +$load = $_GET['load']; +if ( is_array( $load ) ) + $load = implode( '', $load ); + +$load = preg_replace( '/[^a-z0-9,_-]+/i', '', $load ); +$load = array_unique( explode( ',', $load ) ); if ( empty($load) ) exit; @@ -114,7 +129,7 @@ require(ABSPATH . WPINC . '/version.php'); $compress = ( isset($_GET['c']) && $_GET['c'] ); $force_gzip = ( $compress && 'gzip' == $_GET['c'] ); -$expires_offset = 31536000; +$expires_offset = 31536000; // 1 year $out = ''; $wp_scripts = new WP_Scripts(); @@ -128,7 +143,7 @@ foreach( $load as $handle ) { $out .= get_file($path) . "\n"; } -header('Content-Type: application/x-javascript; charset=UTF-8'); +header('Content-Type: application/javascript; charset=UTF-8'); header('Expires: ' . gmdate( "D, d M Y H:i:s", time() + $expires_offset ) . ' GMT'); header("Cache-Control: public, max-age=$expires_offset");