Changeset 664 for trunk/wp-admin/install.php
- Timestamp:
- 12/30/2003 09:31:13 AM (22 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/install.php (modified) (4 diffs)
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
Note: See TracChangeset
for help on using the changeset viewer.