Changeset 20895
- Timestamp:
- 05/25/2012 01:43:35 PM (14 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/includes/update-core.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/update-core.php
r20850 r20895 667 667 * Redirect to the About WordPress page after a successful upgrade. 668 668 * 669 * This function is only needed when the existing install is older than 3. 3.0 (3.4.0 for multisite).669 * This function is only needed when the existing install is older than 3.4.0. 670 670 * 671 671 * @since 3.3.0 … … 675 675 global $wp_version, $pagenow, $action; 676 676 677 if ( is_multisite() ) { 678 // Change to self_admin_url(). 679 if ( version_compare( $wp_version, '3.4-alpha', '>=' ) ) 677 if ( version_compare( $wp_version, '3.4-RC1', '>=' ) ) 680 678 return; 681 } elseif ( version_compare( $wp_version, '3.3', '>=' ) ) {682 return;683 }684 679 685 680 // Ensure we only run this on the update-core.php page. wp_update_core() could be called in other contexts.
Note: See TracChangeset
for help on using the changeset viewer.