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:
parent
2da096b18c
commit
d39db098d7
@ -535,7 +535,7 @@ function _copy_dir($from, $to, $skip_list = array() ) {
|
|||||||
* @since 3.3.0
|
* @since 3.3.0
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
function _redirect_to_about_wordpress( $wp_version ) {
|
function _redirect_to_about_wordpress( $new_version ) {
|
||||||
global $wp_version, $pagenow, $action;
|
global $wp_version, $pagenow, $action;
|
||||||
|
|
||||||
if ( version_compare( $wp_version, '3.3', '>=' ) )
|
if ( version_compare( $wp_version, '3.3', '>=' ) )
|
||||||
@ -553,8 +553,8 @@ function _redirect_to_about_wordpress( $wp_version ) {
|
|||||||
|
|
||||||
// See do_core_upgrade()
|
// See do_core_upgrade()
|
||||||
show_message( __('WordPress updated successfully') );
|
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-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>.' ), $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>.' ), $new_version, esc_url( admin_url( 'about.php?updated' ) ) ) . '</span>' );
|
||||||
echo '</div>';
|
echo '</div>';
|
||||||
?>
|
?>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
|
@ -389,7 +389,7 @@ function do_core_upgrade( $reinstall = false ) {
|
|||||||
?>
|
?>
|
||||||
</div>
|
</div>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
//window.location = '<?php echo admin_url( 'about.php?upgraded' ); ?>';
|
window.location = '<?php echo admin_url( 'about.php?upgraded' ); ?>';
|
||||||
</script>
|
</script>
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user