X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/9e77185fafaf4e60e2b73821e0e4b9b1a11fb85f..refs/tags/wordpress-4.4:/wp-admin/load-styles.php diff --git a/wp-admin/load-styles.php b/wp-admin/load-styles.php index 71659234..2563e6f6 100644 --- a/wp-admin/load-styles.php +++ b/wp-admin/load-styles.php @@ -11,87 +11,7 @@ error_reporting(0); define( 'ABSPATH', dirname(dirname(__FILE__)) . '/' ); define( 'WPINC', 'wp-includes' ); -/** - * @ignore - */ -function __() {} - -/** - * @ignore - */ -function _x() {} - -/** - * @ignore - */ -function add_filter() {} - -/** - * @ignore - */ -function esc_attr() {} - -/** - * @ignore - */ -function apply_filters() {} - -/** - * @ignore - */ -function get_option() {} - -/** - * @ignore - */ -function is_lighttpd_before_150() {} - -/** - * @ignore - */ -function add_action() {} - -/** - * @ignore - */ -function do_action_ref_array() {} - -/** - * @ignore - */ -function get_bloginfo() {} - -/** - * @ignore - */ -function is_admin() {return true;} - -/** - * @ignore - */ -function site_url() {} - -/** - * @ignore - */ -function admin_url() {} - -/** - * @ignore - */ -function wp_guess_url() {} - -function get_file($path) { - - if ( function_exists('realpath') ) - $path = realpath($path); - - if ( ! $path || ! @is_file($path) ) - return ''; - - return @file_get_contents($path); -} - +require( ABSPATH . 'wp-admin/includes/noop.php' ); require( ABSPATH . WPINC . '/script-loader.php' ); require( ABSPATH . WPINC . '/version.php' ); @@ -110,7 +30,7 @@ $out = ''; $wp_styles = new WP_Styles(); wp_default_styles($wp_styles); -foreach( $load as $handle ) { +foreach ( $load as $handle ) { if ( !array_key_exists($handle, $wp_styles->registered) ) continue;