Changeset 35508 for trunk/src/wp-admin/upgrade.php
- Timestamp:
- 11/04/2015 05:59:35 PM (10 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/upgrade.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/upgrade.php
r35204 r35508 68 68 </head> 69 69 <body class="wp-core-ui"> 70 < h1 id="logo"><a href="<?php echo esc_url( __( 'https://wordpress.org/' ) ); ?>" tabindex="-1"><?php _e( 'WordPress' ); ?></a></h1>70 <p id="logo"><a href="<?php echo esc_url( __( 'https://wordpress.org/' ) ); ?>" tabindex="-1"><?php _e( 'WordPress' ); ?></a></p> 71 71 72 72 <?php if ( get_option( 'db_version' ) == $wp_db_version || !is_blog_installed() ) : ?> 73 73 74 <h 2><?php _e( 'No Update Required' ); ?></h2>74 <h1><?php _e( 'No Update Required' ); ?></h1> 75 75 <p><?php _e( 'Your WordPress database is already up-to-date!' ); ?></p> 76 76 <p class="step"><a class="button button-large" href="<?php echo get_option( 'home' ); ?>/"><?php _e( 'Continue' ); ?></a></p> … … 93 93 } 94 94 ?> 95 <h 2><?php _e( 'Database Update Required' ); ?></h2>95 <h1><?php _e( 'Database Update Required' ); ?></h1> 96 96 <p><?php _e( 'WordPress has been updated! Before we send you on your way, we have to update your database to the newest version.' ); ?></p> 97 97 <p><?php _e( 'The database update process may take a little while, so please be patient.' ); ?></p> … … 106 106 $backto = wp_validate_redirect($backto, __get_option( 'home' ) . '/'); 107 107 ?> 108 <h 2><?php _e( 'Update Complete' ); ?></h2>108 <h1><?php _e( 'Update Complete' ); ?></h1> 109 109 <p><?php _e( 'Your WordPress database has been successfully updated!' ); ?></p> 110 110 <p class="step"><a class="button button-large" href="<?php echo $backto; ?>"><?php _e( 'Continue' ); ?></a></p>
Note: See TracChangeset
for help on using the changeset viewer.