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

git-svn-id: http://core.svn.wordpress.org/trunk@20894 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin 2012-05-25 13:41:01 +00:00
parent d8abece877
commit 206e266cad
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
}