- Timestamp:
- 04/01/2014 03:28:09 AM (12 years ago)
- Location:
- branches/3.7
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
src/wp-admin/includes/class-wp-upgrader.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/3.7
- Property svn:mergeinfo changed
/trunk merged: 26016-26017
- Property svn:mergeinfo changed
-
branches/3.7/src/wp-admin/includes/class-wp-upgrader.php
r27881 r27883 1315 1315 1316 1316 function upgrade( $current, $args = array() ) { 1317 global $wp_filesystem, $wp_version; 1317 global $wp_filesystem; 1318 1319 include ABSPATH . WPINC . '/version.php'; // $wp_version; 1318 1320 1319 1321 $start_time = time(); … … 1423 1425 'fs_method_forced' => defined( 'FS_METHOD' ) || has_filter( 'filesystem_method' ), 1424 1426 'time_taken' => time() - $start_time, 1427 'reported' => $wp_version, 1425 1428 'attempted' => $current->version, 1426 1429 ); … … 1901 1904 // if the filesystem is unavailable, false is returned. 1902 1905 if ( false === $upgrade_result ) { 1903 $upgrade_result = new WP_Error( 'fs_unavailable', __( 'Could not access filesystem.' ) ); 1906 $upgrade_result = new WP_Error( 'fs_unavailable', __( 'Could not access filesystem.' ) ); 1904 1907 } 1905 1908
Note: See TracChangeset
for help on using the changeset viewer.