From 4252fbeab2fa8b97aa6cd67149e6ca1d18f86586 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Tue, 29 Mar 2005 05:06:10 +0000 Subject: [PATCH] And not or when checking if installing. Props: donncha git-svn-id: https://develop.svn.wordpress.org/trunk@2486 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-settings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-settings.php b/wp-settings.php index 995636d5b3..f1672ec567 100644 --- a/wp-settings.php +++ b/wp-settings.php @@ -69,7 +69,7 @@ require (ABSPATH . WPINC . '/default-filters.php'); require_once (ABSPATH . WPINC . '/wp-l10n.php'); $wpdb->hide_errors(); -if ( !update_user_cache() && (!strstr($_SERVER['PHP_SELF'], 'install.php') || !defined('WP_INSTALLING')) ) { +if ( !update_user_cache() && (!strstr($_SERVER['PHP_SELF'], 'install.php') && !defined('WP_INSTALLING')) ) { if ( strstr($_SERVER['PHP_SELF'], 'wp-admin') ) $link = 'install.php'; else