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:
parent
d8abece877
commit
206e266cad
|
@ -385,7 +385,7 @@ function do_core_upgrade( $reinstall = false ) {
|
||||||
?>
|
?>
|
||||||
</div>
|
</div>
|
||||||
<script type="text/javascript">
|
<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>
|
</script>
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue