Changeset 8242 for branches/crazyhorse/wp-settings.php
- Timestamp:
- 07/02/2008 11:07:56 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/crazyhorse/wp-settings.php
r8069 r8242 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( sprintf( /*WP_I18N_OLD_PHP*/'Your server is running PHP version %s but WordPress requires at least 4.3.'/*/WP_I18N_OLD_PHP*/, php_version() ) ); 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') ) … … 363 363 /** 364 364 * It is possible to define this in wp-config.php 365 * @since 2.6 366 */ 367 if ( !defined('ADMIN_COOKIE_PATH') ) 368 define( 'ADMIN_COOKIE_PATH', SITECOOKIEPATH . 'wp-admin' ); 369 370 /** 371 * It is possible to define this in wp-config.php 372 * @since 2.6 373 */ 374 if ( !defined('PLUGINS_COOKIE_PATH') ) 375 define( 'PLUGINS_COOKIE_PATH', preg_replace('|https?://[^/]+|i', '', WP_PLUGIN_URL) ); 376 377 /** 378 * It is possible to define this in wp-config.php 365 379 * @since 2.0.0 366 380 */
Note: See TracChangeset
for help on using the changeset viewer.