Changeset 6110 for trunk/wp-settings.php
- Timestamp:
- 09/13/07 06:23:23 (1 year ago)
- Files:
-
- trunk/wp-settings.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-settings.php
r6108 r6110 114 114 if ( !defined('PLUGINDIR') ) 115 115 define('PLUGINDIR', 'wp-content/plugins'); // no leading slash, no trailing slash 116 117 require (ABSPATH . WPINC . '/compat.php'); 118 require (ABSPATH . WPINC . '/functions.php'); 119 116 120 if ( file_exists(ABSPATH . 'wp-content/db.php') ) 117 121 require_once (ABSPATH . 'wp-content/db.php'); … … 123 127 124 128 if ( preg_match('|[^a-z0-9_]|i', $wpdb->prefix) && !file_exists(ABSPATH . 'wp-content/db.php') ) 125 die("<strong>ERROR</strong>: <code>$table_prefix</code> in <code>wp-config.php</code> can only contain numbers, letters, and underscores.");129 wp_die("<strong>ERROR</strong>: <code>$table_prefix</code> in <code>wp-config.php</code> can only contain numbers, letters, and underscores."); 126 130 127 131 // Table names … … 151 155 152 156 wp_cache_init(); 153 154 require (ABSPATH . WPINC . '/compat.php');155 require (ABSPATH . WPINC . '/functions.php');156 157 157 158 require (ABSPATH . WPINC . '/classes.php');
