]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/upgrade.php
Wordpress 2.7.1-scripts
[autoinstalls/wordpress.git] / wp-admin / upgrade.php
index 67618d0aff1b45716e8337804e2f106f17a44d05..e26a92e367384093bac65cbaa9005fd07eeb7275 100644 (file)
@@ -1,16 +1,38 @@
 <?php
+/**
+ * Upgrade WordPress Page.
+ *
+ * @package WordPress
+ * @subpackage Administration
+ */
+
+/**
+ * We are upgrading WordPress.
+ *
+ * @since unknown
+ * @var bool
+ */
 define('WP_INSTALLING', true);
-if (!file_exists('../wp-config.php'))
-       die("There doesn't seem to be a <code>wp-config.php</code> file. I need this before we can get started. Need more help? <a href='http://codex.wordpress.org/Installing_WordPress#Step_3:_Set_up_wp-config.php'>We got it</a>. You can create a <code>wp-config.php</code> file through a web interface, but this doesn't work for all server setups. The safest way is to manually create the file.</p><p><a href='setup-config.php' class='button'>Create a Configuration File</a>");
 
-require('../wp-config.php');
+/** Load WordPress Bootstrap */
+require('../wp-load.php');
+
 timer_start();
 require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
 
-if (isset($_GET['step']))
-       $step = (int) $_GET['step'];
+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'));
 ?>
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
@@ -18,16 +40,16 @@ else
 <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( 'css/install' ); ?>
+       <?php wp_admin_css( 'install', true ); ?>
 </head>
 <body>
 <h1 id="logo"><img alt="WordPress" src="images/wordpress-logo.png" /></h1>
 
-<?php if ( get_option('db_version') == $wp_db_version ) : ?>
+<?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>
-<h2 class="step"><a href="<?php echo get_option('home'); ?>/"><?php _e('Continue'); ?></a></h2>
+<p class="step"><a class="button" href="<?php echo get_option('home'); ?>/"><?php _e('Continue'); ?></a></p>
 
 <?php else :
 switch($step) :
@@ -39,7 +61,7 @@ switch($step) :
 <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>
 <p><?php _e('The upgrade process may take a while, so please be patient.'); ?></p>
-<h2 class="step"><a href="upgrade.php?step=1&amp;backto=<?php echo $goback; ?>"><?php _e('Upgrade WordPress'); ?></a></h2>
+<p class="step"><a class="button" href="upgrade.php?step=1&amp;backto=<?php echo $goback; ?>"><?php _e('Upgrade WordPress'); ?></a></p>
 <?php
                break;
        case 1:
@@ -54,7 +76,7 @@ switch($step) :
 ?>
 <h2><?php _e('Upgrade Complete'); ?></h2>
        <p><?php _e('Your WordPress database has been successfully upgraded!'); ?></p>
-       <h2 class="step"><a href="<?php echo $backto; ?>"><?php _e('Continue'); ?></a></h2>
+       <p class="step"><a class="button" href="<?php echo $backto; ?>"><?php _e('Continue'); ?></a></p>
 
 <!--
 <pre>
@@ -70,4 +92,4 @@ endswitch;
 endif;
 ?>
 </body>
-</html>
\ No newline at end of file
+</html>