Changeset 4072 for trunk/wp-settings.php
- Timestamp:
- 08/05/2006 03:47:20 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-settings.php
r4017 r4072 48 48 49 49 if ( !(phpversion() >= '4.1') ) 50 wp_die( 'Your server is running PHP version ' . phpversion() . ' but WordPress requires at least 4.1' );50 die( 'Your server is running PHP version ' . phpversion() . ' but WordPress requires at least 4.1' ); 51 51 52 52 if ( !extension_loaded('mysql') ) 53 wp_die( 'Your PHP installation appears to be missing the MySQL which is required for WordPress.' );53 die( 'Your PHP installation appears to be missing the MySQL which is required for WordPress.' ); 54 54 55 55 function timer_start() {
Note: See TracChangeset
for help on using the changeset viewer.