Changeset 46096
- Timestamp:
- 09/12/2019 01:05:35 PM (6 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/upgrade.php
r45932 r46096 631 631 $wp_current_db_version = __get_option( 'db_version' ); 632 632 633 // We are up -to-date. Nothing to do.633 // We are up to date. Nothing to do. 634 634 if ( $wp_db_version == $wp_current_db_version ) { 635 635 return; … … 688 688 $wp_current_db_version = __get_option( 'db_version' ); 689 689 690 // We are up -to-date. Nothing to do.690 // We are up to date. Nothing to do. 691 691 if ( $wp_db_version == $wp_current_db_version ) { 692 692 return; -
trunk/src/wp-admin/upgrade.php
r45932 r46096 74 74 75 75 <h1><?php _e( 'No Update Required' ); ?></h1> 76 <p><?php _e( 'Your WordPress database is already up -to-date!' ); ?></p>76 <p><?php _e( 'Your WordPress database is already up to date!' ); ?></p> 77 77 <p class="step"><a class="button button-large" href="<?php echo get_option( 'home' ); ?>/"><?php _e( 'Continue' ); ?></a></p> 78 78
Note: See TracChangeset
for help on using the changeset viewer.