Changeset 25805
- Timestamp:
- 10/16/2013 04:01:12 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/update-core.php
r25801 r25805 698 698 if ( function_exists( 'get_core_checksums' ) ) { 699 699 $checksums = get_core_checksums( $wp_version, isset( $wp_local_package ) ? $wp_local_package : 'en_US' ); 700 if ( is_array( current( $checksums ) ) ) // Compat code for 3.7-beta2701 $checksums = current( $checksums );700 if ( is_array( $checksums ) && isset( $checksums[ $wp_version ] ) ) 701 $checksums = $checksums[ $wp_version ]; // Compat code for 3.7-beta2 702 702 if ( is_array( $checksums ) ) { 703 703 foreach( $checksums as $file => $checksum ) {
Note: See TracChangeset
for help on using the changeset viewer.