Make WordPress Core

Changeset 4072 for trunk/wp-settings.php


Ignore:
Timestamp:
08/05/2006 03:47:20 AM (18 years ago)
Author:
ryan
Message:

Don't wp_die() before functions.php is loaded.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-settings.php

    r4017 r4072  
    4848
    4949if ( !(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' );
    5151
    5252if ( !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.' );
    5454
    5555function timer_start() {
Note: See TracChangeset for help on using the changeset viewer.