Changeset 8168 for trunk/wp-settings.php
- Timestamp:
- 06/23/2008 03:40:43 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-settings.php
r8069 r8168 98 98 99 99 if ( version_compare( '4.3', phpversion(), '>' ) ) { 100 die( 'Your server is running PHP version ' . phpversion() . ' but WordPress requires at least 4.3.');100 die( /*WP_I18N_OLD_PHP*/'Your server is running PHP version ' . phpversion() . ' but WordPress requires at least 4.3.'/*/WP_I18N_OLD_PHP*/ ); 101 101 } 102 102 … … 105 105 106 106 if ( !extension_loaded('mysql') && !file_exists(WP_CONTENT_DIR . '/db.php') ) 107 die( 'Your PHP installation appears to be missing the MySQL extension which is required by WordPress.');107 die( /*WP_I18N_OLD_MYSQL*/'Your PHP installation appears to be missing the MySQL extension which is required by WordPress.'/*/WP_I18N_OLD_MYSQL*/ ); 108 108 109 109 /** … … 213 213 214 214 if ( is_wp_error($prefix) ) 215 wp_die( '<strong>ERROR</strong>: <code>$table_prefix</code> in <code>wp-config.php</code> can only contain numbers, letters, and underscores.');215 wp_die(/*WP_I18N_BAD_PREFIX*/'<strong>ERROR</strong>: <code>$table_prefix</code> in <code>wp-config.php</code> can only contain numbers, letters, and underscores.'/*/WP_I18N_BAD_PREFIX*/); 216 216 217 217 if ( file_exists(WP_CONTENT_DIR . '/object-cache.php') )
Note: See TracChangeset
for help on using the changeset viewer.