Changeset 664
- Timestamp:
- 12/30/2003 09:31:13 AM (21 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/install.php
r601 r664 1 1 <?php 2 2 $_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.");3 if (!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."); 4 4 require_once('../wp-config.php'); 5 5 require('upgrade-functions.php'); 6 6 7 7 $step = $HTTP_GET_VARS['step']; … … 10 10 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 11 11 <html xmlns="http://www.w3.org/1999/xhtml"> 12 <title>WordPress & #8212; Installation</title>12 <title>WordPress › Installation</title> 13 13 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> 14 14 <style media="screen" type="text/css"> … … 24 24 background-image: url(http://wordpress.org/images/wordpress.gif); 25 25 background-repeat: no-repeat; 26 height: 72px;26 height: 60px; 27 27 border-bottom: 4px solid #333; 28 28 } 29 29 #logo a { 30 30 display: block; 31 height: 72px;31 height: 60px; 32 32 } 33 33 #logo a span { … … 713 713 $q = $wpdb->query($query); 714 714 715 // Do final updates 716 upgrade_071(); 717 upgrade_072(); 718 upgrade_100(); 715 719 ?> 716 720 -
trunk/wp-admin/upgrade-functions.php
r662 r664 588 588 WHERE option_name LIKE 'links_rating_image%' 589 589 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'"); 590 593 // Multiple categories 591 594 maybe_create_table($tablepost2cat, " -
trunk/wp-admin/upgrade.php
r662 r664 23 23 background-image: url(http://wordpress.org/images/logo.png); 24 24 background-repeat: no-repeat; 25 height: 54px;25 height: 60px; 26 26 border-bottom: 4px solid #333; 27 27 } … … 30 30 text-decoration: none; 31 31 text-indent: -100em; 32 height: 54px;32 height: 60px; 33 33 } 34 34 p {
Note: See TracChangeset
for help on using the changeset viewer.