Remove debug cruft and fix variable collision. fixes #18467.

git-svn-id: https://develop.svn.wordpress.org/trunk@19532 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2011-12-01 06:02:18 +00:00
parent 2da096b18c
commit d39db098d7
2 changed files with 4 additions and 4 deletions

View File

@ -535,7 +535,7 @@ function _copy_dir($from, $to, $skip_list = array() ) {
* @since 3.3.0
*
*/
function _redirect_to_about_wordpress( $wp_version ) {
function _redirect_to_about_wordpress( $new_version ) {
global $wp_version, $pagenow, $action;
if ( version_compare( $wp_version, '3.3', '>=' ) )
@ -553,8 +553,8 @@ function _redirect_to_about_wordpress( $wp_version ) {
// See do_core_upgrade()
show_message( __('WordPress updated successfully') );
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>.' ), $wp_version, esc_url( admin_url( 'about.php?updated' ) ) ) . '</span>' );
show_message( '<span class="hide-if-js">' . sprintf( __( 'Welcome to WordPress %1$s. <a href="%2$s">Learn more</a>.' ), $wp_version, esc_url( admin_url( 'about.php?updated' ) ) ) . '</span>' );
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( admin_url( 'about.php?updated' ) ) ) . '</span>' );
show_message( '<span class="hide-if-js">' . sprintf( __( 'Welcome to WordPress %1$s. <a href="%2$s">Learn more</a>.' ), $new_version, esc_url( admin_url( 'about.php?updated' ) ) ) . '</span>' );
echo '</div>';
?>
<script type="text/javascript">

View File

@ -389,7 +389,7 @@ function do_core_upgrade( $reinstall = false ) {
?>
</div>
<script type="text/javascript">
//window.location = '<?php echo admin_url( 'about.php?upgraded' ); ?>';
window.location = '<?php echo admin_url( 'about.php?upgraded' ); ?>';
</script>
<?php
}