Files
WordPress/wp-admin/upgrade.php
T

96 lines
2.6 KiB
PHP
Raw Normal View History

<?php
/**
* Upgrade WordPress Page.
*
* @package WordPress
* @subpackage Administration
*/
/**
* We are upgrading WordPress.
*
* @since unknown
* @var bool
*/
2005-03-17 23:34:06 +00:00
define('WP_INSTALLING', true);
/** Load WordPress Bootstrap */
require('../wp-load.php');
2004-05-05 08:00:13 +00:00
timer_start();
require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
2003-12-30 05:36:47 +00:00
if ( isset($_GET['step']) )
$step = $_GET['step'];
else
$step = 0;
// Do it. No output.
if ( 'upgrade_db' === $step ) {
wp_upgrade();
die('0');
}
$step = (int) $step;
@header('Content-Type: ' . get_option('html_type') . '; charset=' . get_option('blog_charset'));
2003-12-30 05:36:47 +00:00
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
<head>
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
<title><?php _e('WordPress &rsaquo; Upgrade'); ?></title>
<?php wp_admin_css( 'install', true ); ?>
2004-09-05 01:22:17 +00:00
</head>
<body>
2005-11-17 09:55:53 +00:00
<h1 id="logo"><img alt="WordPress" src="images/wordpress-logo.png" /></h1>
<?php if ( get_option('db_version') == $wp_db_version || !is_blog_installed()) : ?>
<h2><?php _e('No Upgrade Required'); ?></h2>
<p><?php _e('Your WordPress database is already up-to-date!'); ?></p>
2008-07-09 04:33:31 +00:00
<p class="step"><a class="button" href="<?php echo get_option('home'); ?>/"><?php _e('Continue'); ?></a></p>
<?php else :
switch($step) :
2003-12-30 05:36:47 +00:00
case 0:
$goback = stripslashes(wp_get_referer());
$goback = clean_url($goback, null, 'url');
$goback = urlencode($goback);
?>
<h2><?php _e('Database Upgrade Required'); ?></h2>
<p><?php _e('Your WordPress database is out-of-date, and must be upgraded before you can continue.'); ?></p>
2007-09-03 23:32:58 +00:00
<p><?php _e('The upgrade process may take a while, so please be patient.'); ?></p>
2008-07-09 04:33:31 +00:00
<p class="step"><a class="button" href="upgrade.php?step=1&amp;backto=<?php echo $goback; ?>"><?php _e('Upgrade WordPress'); ?></a></p>
2003-12-30 05:36:47 +00:00
<?php
break;
2003-12-30 05:36:47 +00:00
case 1:
wp_upgrade();
2006-01-10 03:06:48 +00:00
if ( empty( $_GET['backto'] ) )
$backto = __get_option('home') . '/';
else {
$backto = stripslashes(urldecode($_GET['backto']));
$backto = clean_url($backto, null, 'url');
}
2007-09-03 23:32:58 +00:00
?>
<h2><?php _e('Upgrade Complete'); ?></h2>
<p><?php _e('Your WordPress database has been successfully upgraded!'); ?></p>
2008-07-09 04:33:31 +00:00
<p class="step"><a class="button" href="<?php echo $backto; ?>"><?php _e('Continue'); ?></a></p>
2004-05-05 08:00:13 +00:00
<!--
<pre>
<?php printf(__('%s queries'), $wpdb->num_queries); ?>
2004-05-05 08:00:13 +00:00
<?php printf(__('%s seconds'), timer_stop(0)); ?>
2004-05-05 08:00:13 +00:00
</pre>
-->
2003-12-30 05:36:47 +00:00
<?php
break;
endswitch;
endif;
?>
2003-12-30 05:36:47 +00:00
</body>
</html>