Make WordPress Core

Changeset 664


Ignore:
Timestamp:
12/30/2003 09:31:13 AM (21 years ago)
Author:
saxmatt
Message:

New wp-config.php setup by Chris Anderson, updated style for upgrade files, and brought install.php up to date with current version.

Location:
trunk/wp-admin
Files:
1 added
3 edited

Legend:

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

    r601 r664  
    11<?php
    22$_wp_installing = 1;
    3 if (!file_exists('../wp-config.php')) die("There doesn't seem to be a wp-config.php file. Double check that you updated wp-config.sample.php with the proper database connection information and renamed it to wp-config.php.");
     3if (!file_exists('../wp-config.php')) die("There doesn't seem to be a wp-config.php file. You must <a href='install-config.php'>create one</a> before moving on.");
    44require_once('../wp-config.php');
    5 
     5require('upgrade-functions.php');
    66
    77$step = $HTTP_GET_VARS['step'];
     
    1010<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    1111<html xmlns="http://www.w3.org/1999/xhtml">
    12     <title>WordPress &#8212; Installation</title>
     12    <title>WordPress &rsaquo; Installation</title>
    1313    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    1414    <style media="screen" type="text/css">
     
    2424        background-image: url(http://wordpress.org/images/wordpress.gif);
    2525        background-repeat: no-repeat;
    26         height: 72px;
     26        height: 60px;
    2727        border-bottom: 4px solid #333;
    2828    }
    2929    #logo a {
    3030        display: block;
    31         height: 72px;
     31        height: 60px;
    3232    }
    3333    #logo a span {
     
    713713$q = $wpdb->query($query);
    714714
     715// Do final updates
     716upgrade_071();
     717upgrade_072();
     718upgrade_100();
    715719?>
    716720
  • trunk/wp-admin/upgrade-functions.php

    r662 r664  
    588588                                                      WHERE option_name LIKE 'links_rating_image%'
    589589                                                      AND option_value LIKE 'wp-links/links-images/%'");
     590    $wpdb->query("DELETE FROM $tableoptions WHERE option_name = 'comment_allowed_tags'");
     591    $wpdb->query("DELETE FROM $tableoptions WHERE option_name = 'use_preview'");
     592    $wpdb->query("DELETE FROM $tableoptions WHERE option_name = 'search_engine_friendly_urls'");
    590593    // Multiple categories
    591594    maybe_create_table($tablepost2cat, "
  • trunk/wp-admin/upgrade.php

    r662 r664  
    2323        background-image: url(http://wordpress.org/images/logo.png);
    2424        background-repeat: no-repeat;
    25         height: 54px;
     25        height: 60px;
    2626        border-bottom: 4px solid #333;
    2727    }
     
    3030        text-decoration: none;
    3131        text-indent: -100em;
    32         height: 54px;
     32        height: 60px;
    3333    }
    3434    p {
Note: See TracChangeset for help on using the changeset viewer.