Make WordPress Core

Ticket #46653: #46653.patch

File #46653.patch, 916 bytes (added by monarkpatel, 7 years ago)
  • wp-settings.php

     
    3636 * we're including version.php from another installation and don't want
    3737 * these values to be overridden if already set.
    3838 */
     39
     40/**
     41 * These can't be directly globalized in version.php. When updating,
     42 * we're including version.php from another installation and don't want
     43 * these values to be overridden if already set.
     44 *
     45 * @global string $wp_version
     46 * @global string $wp_db_version
     47 * @global string $tinymce_version
     48 * @global string $required_php_version
     49 * @global string $required_mysql_version
     50 * @global string $wp_local_package
     51 */
    3952global $wp_version, $wp_db_version, $tinymce_version, $required_php_version, $required_mysql_version, $wp_local_package;
    4053require( ABSPATH . WPINC . '/version.php' );
    4154