Changeset 21704
- Timestamp:
- 09/03/2012 10:01:55 PM (13 years ago)
- File:
-
- 1 edited
-
branches/3.4/wp-admin/includes/update-core.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/3.4/wp-admin/includes/update-core.php
r21151 r21704 696 696 // See do_core_upgrade() 697 697 show_message( __('WordPress updated successfully') ); 698 show_message( '<span class="hide-if-no-js">' . sprintf( __( 'Welcome to WordPress %1$s. You will be redirected to the About WordPress screen. If not, click <a href="%s">here</a>.' ), $new_version, esc_url( self_admin_url( 'about.php?updated' ) ) ) . '</span>' ); 699 show_message( '<span class="hide-if-js">' . sprintf( __( 'Welcome to WordPress %1$s. <a href="%2$s">Learn more</a>.' ), $new_version, esc_url( self_admin_url( 'about.php?updated' ) ) ) . '</span>' ); 698 699 // self_admin_url() won't exist when upgrading from <= 3.0, so relative URLs are intentional. 700 show_message( '<span class="hide-if-no-js">' . sprintf( __( 'Welcome to WordPress %1$s. You will be redirected to the About WordPress screen. If not, click <a href="%s">here</a>.' ), $new_version, 'about.php?updated' ) . '</span>' ); 701 show_message( '<span class="hide-if-js">' . sprintf( __( 'Welcome to WordPress %1$s. <a href="%2$s">Learn more</a>.' ), $new_version, 'about.php?updated' ) . '</span>' ); 700 702 echo '</div>'; 701 703 ?> 702 704 <script type="text/javascript"> 703 window.location = ' <?php echo self_admin_url( 'about.php?updated' ); ?>';705 window.location = 'about.php?updated'; 704 706 </script> 705 707 <?php
Note: See TracChangeset
for help on using the changeset viewer.