Make WordPress Core

Changeset 5900


Ignore:
Timestamp:
08/19/2007 04:27:04 AM (18 years ago)
Author:
matt
Message:

Don't run if installing, fixes $4772

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/update.php

    r5894 r5900  
    44
    55function wp_version_check() {
     6    if ( strpos($_SERVER['PHP_SELF'], 'install.php') !== false || defined('WP_INSTALLING') )
     7        return;
     8
    69    global $wp_version;
    710    $php_version = phpversion();
Note: See TracChangeset for help on using the changeset viewer.