Make WordPress Core


Ignore:
Timestamp:
09/05/2004 01:22:17 AM (22 years ago)
Author:
saxmatt
Message:

Install and upgrade refactoring complete.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/upgrade.php

    r1575 r1601  
    1212<html xmlns="http://www.w3.org/1999/xhtml">
    1313<head>
    14 <title>WordPress &rsaquo; Upgrade WordPress</title>
    15 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    16 <style media="screen" type="text/css">
     14        <title>WordPress &rsaquo; Upgrade</title>
     15        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
     16        <style media="screen" type="text/css">
     17        <!--
     18        html {
     19                background: #eee;
     20        }
    1721        body {
    18                 background-color: white;
    19                 color: black;
     22                background: #fff;
     23                color: #000;
    2024                font-family: Georgia, "Times New Roman", Times, serif;
    21                 margin-left: 15%;
    22                 margin-right: 15%;
     25                margin-left: 20%;
     26                margin-right: 20%;
     27                padding: .2em 2em;
     28        }
     29       
     30        h1 {
     31                color: #006;
     32                font-size: 18px;
     33                font-weight: lighter;
     34        }
     35       
     36        h2 {
     37                font-size: 16px;
     38        }
     39       
     40        p, li, dt {
     41                line-height: 140%;
     42                padding-bottom: 2px;
     43        }
     44
     45        ul, ol {
     46                padding: 5px 5px 5px 20px;
    2347        }
    2448        #logo {
    25                 margin: 0;
    26                 padding: 0;
    27                 background-image: url(http://wordpress.org/images/logo.png);
    28                 background-repeat: no-repeat;
    29                 height: 60px;
    30                 border-bottom: 4px solid #333;
     49                margin-bottom: 2em;
    3150        }
    32         #logo a {
    33                 display: block;
    34                 text-decoration: none;
    35                 text-indent: -100em;
    36                 height: 60px;
    37         }
    38         p {
    39                 line-height: 140%;
    40         }
     51.step a, .step input {
     52        font-size: 2em;
     53}
     54.step, th {
     55        text-align: right;
     56}
     57#footer {
     58text-align: center; border-top: 1px solid #ccc; padding-top: 1em; font-style: italic;
     59}
     60        -->
    4161        </style>
    42 </head><body>
    43 <h1 id="logo"><a href="http://wordpress.org">WordPress</a></h1>
     62</head>
     63<body>
     64<h1 id="logo"><img alt="WordPress" src="http://static.wordpress.org/logo.png" /></h1>
    4465<?php
    4566switch($step) {
     
    4768        case 0:
    4869?>
    49 <p>This file upgrades you from any previous version of WordPress to the latest. It may take a while though, so be patient. </p>
    50 <p>If you&#8217;re all ready, <a href="upgrade.php?step=1">let's go</a>! </p>
     70<p>This file upgrades you from any previous version of WordPress to the latest. It may take a while though, so be patient.</p>
     71<h2 class="step"><a href="upgrade.php?step=1">Upgrade WordPress &raquo;</a></h2>
    5172<?php
    5273        break;
    5374       
    5475        case 1:
     76        make_db_current_silent();
    5577        upgrade_all();
    5678?>
Note: See TracChangeset for help on using the changeset viewer.