Make WordPress Core

Ticket #37699: 37699-version.3.diff

File 37699-version.3.diff, 10.9 KB (added by wonderboymusic, 8 years ago)
  • src/wp-includes/class-http.php

     
    101101         * @access public
    102102         * @since 2.7.0
    103103         *
    104          * @global string $wp_version
    105          *
    106104         * @param string       $url  The request URL.
    107105         * @param string|array $args {
    108106         *     Optional. Array or string of HTTP request arguments.
     
    116114         *     @type string       $httpversion         Version of the HTTP protocol to use. Accepts '1.0' and '1.1'.
    117115         *                                             Default '1.0'.
    118116         *     @type string       $user-agent          User-agent value sent.
    119          *                                             Default WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' ).
     117         *                                             Default WordPress/' . get_bloginfo( 'version' ) . '; ' . get_bloginfo( 'url' ).
    120118         *     @type bool         $reject_unsafe_urls  Whether to pass URLs through wp_http_validate_url().
    121119         *                                             Default false.
    122120         *     @type bool         $blocking            Whether the calling code requires the result of the request.
     
    148146         *                        A WP_Error instance upon error.
    149147         */
    150148        public function request( $url, $args = array() ) {
    151                 global $wp_version;
    152 
    153149                $defaults = array(
    154150                        'method' => 'GET',
    155151                        /**
     
    185181                         *
    186182                         * @param string $user_agent WordPress user agent string.
    187183                         */
    188                         'user-agent' => apply_filters( 'http_headers_useragent', 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' ) ),
     184                        'user-agent' => apply_filters( 'http_headers_useragent', 'WordPress/' . get_bloginfo( 'version' ) . '; ' . get_bloginfo( 'url' ) ),
    189185                        /**
    190186                         * Filters whether to pass URLs through wp_http_validate_url() in an HTTP request.
    191187                         *
  • src/wp-includes/class-wp-editor.php

     
    296296        /**
    297297         * @static
    298298         *
    299          * @global string $wp_version
    300299         * @global string $tinymce_version
    301300         *
    302301         * @param string $editor_id
     
    303302         * @param array  $set
    304303         */
    305304        public static function editor_settings($editor_id, $set) {
    306                 global $wp_version, $tinymce_version;
     305                global $tinymce_version;
    307306
    308307                if ( empty(self::$first_init) ) {
    309308                        if ( is_admin() ) {
     
    559558                                }
    560559
    561560                                $suffix = SCRIPT_DEBUG ? '' : '.min';
    562                                 $version = 'ver=' . $wp_version;
     561                                $version = 'ver=' . get_bloginfo( 'version' );
    563562                                $dashicons = includes_url( "css/dashicons$suffix.css?$version" );
    564563
    565564                                // WordPress default stylesheet and dashicons
     
    11311130        /**
    11321131         *
    11331132         * @static
    1134          * @global string $wp_version
    11351133         * @global string $tinymce_version
    11361134         * @global bool   $concatenate_scripts
    11371135         * @global bool   $compress_scripts
    11381136         */
    11391137        public static function editor_js() {
    1140                 global $wp_version, $tinymce_version, $concatenate_scripts, $compress_scripts;
     1138                global $tinymce_version, $concatenate_scripts, $compress_scripts;
    11411139
    11421140                /**
    11431141                 * Filters "tiny_mce_version" is deprecated
     
    12151213
    12161214                $baseurl = self::$baseurl;
    12171215                // Load tinymce.js when running from /src, else load wp-tinymce.js.gz (production) or tinymce.min.js (SCRIPT_DEBUG)
    1218                 $mce_suffix = false !== strpos( $wp_version, '-src' ) ? '' : '.min';
     1216                $mce_suffix = false !== strpos( get_bloginfo( 'version' ), '-src' ) ? '' : '.min';
    12191217
    12201218                if ( $tmce_on ) {
    12211219                        if ( $compressed ) {
  • src/wp-includes/class-wp-locale.php

     
    125125         * @access private
    126126         *
    127127         * @global string $text_direction
    128          * @global string $wp_version
    129128         */
    130129        public function init() {
    131130                // The Weekdays
     
    231230                elseif ( 'rtl' == _x( 'ltr', 'text direction' ) )
    232231                        $this->text_direction = 'rtl';
    233232
    234                 if ( 'rtl' === $this->text_direction && strpos( $GLOBALS['wp_version'], '-src' ) ) {
     233                if ( 'rtl' === $this->text_direction && strpos( get_bloginfo( 'version' ), '-src' ) ) {
    235234                        $this->text_direction = 'ltr';
    236235                        add_action( 'all_admin_notices', array( $this, 'rtl_src_admin_notice' ) );
    237236                }
  • src/wp-includes/class-wp-xmlrpc-server.php

     
    413413         * Passes property through {@see 'xmlrpc_blog_options'} filter.
    414414         *
    415415         * @since 2.6.0
    416          *
    417          * @global string $wp_version
    418416         */
    419417        public function initialise_blog_option_info() {
    420                 global $wp_version;
    421 
    422418                $this->blog_options = array(
    423419                        // Read only options
    424420                        'software_name'     => array(
     
    429425                        'software_version'  => array(
    430426                                'desc'          => __( 'Software Version' ),
    431427                                'readonly'      => true,
    432                                 'value'         => $wp_version
     428                                'value'         => get_bloginfo( 'version' )
    433429                        ),
    434430                        'blog_url'          => array(
    435431                                'desc'          => __( 'WordPress Address (URL)' ),
     
    61866182         *
    61876183         * @since 1.5.0
    61886184         *
    6189          * @global string $wp_version
    6190          *
    61916185         * @param array  $args {
    61926186         *     Method arguments. Note: arguments must be ordered as documented.
    61936187         *
     
    61976191         * @return string|IXR_Error
    61986192         */
    61996193        public function pingback_ping( $args ) {
    6200                 global $wp_version;
    6201 
    62026194                /** This action is documented in wp-includes/class-wp-xmlrpc-server.php */
    62036195                do_action( 'xmlrpc_call', 'pingback.ping' );
    62046196
     
    62856277                $remote_ip = preg_replace( '/[^0-9a-fA-F:., ]/', '', $_SERVER['REMOTE_ADDR'] );
    62866278
    62876279                /** This filter is documented in wp-includes/class-http.php */
    6288                 $user_agent = apply_filters( 'http_headers_useragent', 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' ) );
     6280                $user_agent = apply_filters( 'http_headers_useragent', 'WordPress/' . get_bloginfo( 'version' ) . '; ' . get_bloginfo( 'url' ) );
    62896281
    62906282                // Let's check the remote site
    62916283                $http_api_args = array(
  • src/wp-includes/comment.php

     
    23622362 *
    23632363 * @since 0.71
    23642364 *
    2365  * @global string $wp_version
    2366  *
    23672365 * @param string $content Post content to check for links.
    23682366 * @param int $post_ID Post ID.
    23692367 */
    23702368function pingback($content, $post_ID) {
    2371         global $wp_version;
    2372 
    23732369        // original code by Mort (http://mort.mine.nu:8080)
    23742370        $post_links = array();
    23752371
     
    24352431                         * @param string $pagelinkedto        URL of page linked to.
    24362432                         * @param string $pagelinkedfrom      URL of page linked from.
    24372433                         */
    2438                         $client->useragent = apply_filters( 'pingback_useragent', $client->useragent . ' -- WordPress/' . $wp_version, $client->useragent, $pingback_server_url, $pagelinkedto, $pagelinkedfrom );
     2434                        $client->useragent = apply_filters( 'pingback_useragent', $client->useragent . ' -- WordPress/' . get_bloginfo( 'version' ), $client->useragent, $pingback_server_url, $pagelinkedto, $pagelinkedfrom );
    24392435                        // when set to true, this outputs debug messages by itself
    24402436                        $client->debug = false;
    24412437
     
    25042500 *
    25052501 * @since 1.2.0
    25062502 *
    2507  * @global string $wp_version
    2508  *
    25092503 * @param string $server Host of blog to connect to.
    25102504 * @param string $path Path to send the ping.
    25112505 */
    25122506function weblog_ping($server = '', $path = '') {
    2513         global $wp_version;
    2514 
    25152507        // using a timeout of 3 seconds should be enough to cover slow servers
    25162508        $client = new WP_HTTP_IXR_Client($server, ((!strlen(trim($path)) || ('/' == $path)) ? false : $path));
    25172509        $client->timeout = 3;
    2518         $client->useragent .= ' -- WordPress/'.$wp_version;
     2510        $client->useragent .= ' -- WordPress/' . get_bloginfo( 'version' );
    25192511
    25202512        // when set to true, this outputs debug messages by itself
    25212513        $client->debug = false;
  • src/wp-includes/formatting.php

     
    49274927 * @ignore
    49284928 * @since 4.6.0
    49294929 * @access private
    4930  *
    4931  * @global string $wp_version WordPress version string.
    49324930 */
    49334931function _print_emoji_detection_script() {
    4934         global $wp_version;
    4935 
    49364932        $settings = array(
    49374933                /**
    49384934                 * Filters the URL where emoji png images are hosted.
     
    49714967                'svgExt' => apply_filters( 'emoji_svg_ext', '.svg' ),
    49724968        );
    49734969
    4974         $version = 'ver=' . $wp_version;
     4970        $version = 'ver=' . get_bloginfo( 'version' );
    49754971
    49764972        if ( SCRIPT_DEBUG ) {
    49774973                $settings['source'] = array(
  • src/wp-includes/general-template.php

     
    33443344 * Registers the default Admin color schemes
    33453345 *
    33463346 * @since 3.0.0
    3347  *
    3348  * @global string $wp_version
    33493347 */
    33503348function register_admin_color_schemes() {
    33513349        $suffix = is_rtl() ? '-rtl' : '';
     
    33583356        );
    33593357
    33603358        // Other color schemes are not available when running out of src
    3361         if ( false !== strpos( $GLOBALS['wp_version'], '-src' ) )
     3359        if ( false !== strpos( get_bloginfo( 'version' ), '-src' ) ) {
    33623360                return;
     3361        }
    33633362
    33643363        wp_admin_css_color( 'light', _x( 'Light', 'admin color scheme' ),
    33653364                admin_url( "css/colors/light/colors$suffix.css" ),
  • src/wp-includes/link-template.php

     
    28972897 *
    28982898 * @since 2.6.0
    28992899 *
    2900  * @global bool   $is_IE      Whether the browser matches an Internet Explorer user agent.
    2901  * @global string $wp_version WP version.
    2902  *
    2903  * @global bool          $is_IE
    2904  * @global string        $wp_version
     2900 * @global bool          $is_IE      Whether the browser matches an Internet Explorer user agent.
    29052901 * @global WP_Press_This $wp_press_this
    29062902 *
    29072903 * @return string The Press This bookmarklet link URL.
    29082904 */
    29092905function get_shortcut_link() {
    2910         global $is_IE, $wp_version;
     2906        global $is_IE;
    29112907
    29122908        $GLOBALS['wp_press_this'] = new WP_Press_This();
    29132909        $bookmarklet_version = $GLOBALS['wp_press_this']->version;
  • src/wp-includes/media.php

     
    38103810 *
    38113811 * @since 4.0.0
    38123812 *
    3813  * @global string $wp_version
    3814  *
    38153813 * @return array The relevant CSS file URLs.
    38163814 */
    38173815function wpview_media_sandbox_styles() {
    3818         $version = 'ver=' . $GLOBALS['wp_version'];
     3816        $version = 'ver=' . get_bloginfo( 'version' );
    38193817        $mediaelement = includes_url( "js/mediaelement/mediaelementplayer.min.css?$version" );
    38203818        $wpmediaelement = includes_url( "js/mediaelement/wp-mediaelement.css?$version" );
    38213819