X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/699231ae09f7057a4d0000cdf32e50a3df6a04ca..41497a896330304904ef6d5783c724ea713739f6:/wp-admin/load-scripts.php diff --git a/wp-admin/load-scripts.php b/wp-admin/load-scripts.php index 17998b06..8cdb9f7e 100644 --- a/wp-admin/load-scripts.php +++ b/wp-admin/load-scripts.php @@ -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 */ @@ -82,11 +86,23 @@ function admin_url() {} */ function home_url() {} +/** + * @ignore + */ +function includes_url() {} + /** * @ignore */ function wp_guess_url() {} +if ( ! function_exists( 'json_encode' ) ) : +/** + * @ignore + */ +function json_encode() {} +endif; + function get_file($path) { if ( function_exists('realpath') ) @@ -129,10 +145,10 @@ header("Cache-Control: public, max-age=$expires_offset"); if ( $compress && ! ini_get('zlib.output_compression') && 'ob_gzhandler' != ini_get('output_handler') && isset($_SERVER['HTTP_ACCEPT_ENCODING']) ) { header('Vary: Accept-Encoding'); // Handle proxies - if ( false !== strpos( strtolower($_SERVER['HTTP_ACCEPT_ENCODING']), 'deflate') && function_exists('gzdeflate') && ! $force_gzip ) { + if ( false !== stripos($_SERVER['HTTP_ACCEPT_ENCODING'], 'deflate') && function_exists('gzdeflate') && ! $force_gzip ) { header('Content-Encoding: deflate'); $out = gzdeflate( $out, 3 ); - } elseif ( false !== strpos( strtolower($_SERVER['HTTP_ACCEPT_ENCODING']), 'gzip') && function_exists('gzencode') ) { + } elseif ( false !== stripos($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip') && function_exists('gzencode') ) { header('Content-Encoding: gzip'); $out = gzencode( $out, 3 ); }