Changeset 28479 for trunk/src/wp-includes/update.php
- Timestamp:
- 05/18/2014 08:51:44 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/update.php
r28145 r28479 26 26 27 27 global $wpdb, $wp_local_package; 28 include ABSPATH . WPINC . '/version.php'; // include an unmodified $wp_version28 include( ABSPATH . WPINC . '/version.php' ); // include an unmodified $wp_version 29 29 $php_version = phpversion(); 30 30 … … 184 184 */ 185 185 function wp_update_plugins( $extra_stats = array() ) { 186 include ABSPATH . WPINC . '/version.php'; // include an unmodified $wp_version186 include( ABSPATH . WPINC . '/version.php' ); // include an unmodified $wp_version 187 187 188 188 if ( defined('WP_INSTALLING') ) … … 323 323 */ 324 324 function wp_update_themes( $extra_stats = array() ) { 325 include ABSPATH . WPINC . '/version.php'; // include an unmodified $wp_version325 include( ABSPATH . WPINC . '/version.php' ); // include an unmodified $wp_version 326 326 327 327 if ( defined( 'WP_INSTALLING' ) ) … … 551 551 552 552 function _maybe_update_core() { 553 include ABSPATH . WPINC . '/version.php'; // include an unmodified $wp_version553 include( ABSPATH . WPINC . '/version.php' ); // include an unmodified $wp_version 554 554 555 555 $current = get_site_transient( 'update_core' );
Note: See TracChangeset
for help on using the changeset viewer.