Use correct variable when redirecting to about.php from update-core.php. fixes #19599.

git-svn-id: https://develop.svn.wordpress.org/trunk@20894 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2012-05-25 13:41:01 +00:00
parent b1a672cdfa
commit 3f7b169181
1 changed files with 1 additions and 1 deletions

View File

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