From 4e26ccb1a4ae385e6f82acf6c46e5b9fe80c2377 Mon Sep 17 00:00:00 2001 From: Mark Jaquith Date: Wed, 7 Mar 2007 06:10:33 +0000 Subject: [PATCH] Typo in [4990] caught by johnbillion. fixes #3920 git-svn-id: https://develop.svn.wordpress.org/trunk@4995 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/vars.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/vars.php b/wp-includes/vars.php index a2fe8c2bad..599bce56db 100644 --- a/wp-includes/vars.php +++ b/wp-includes/vars.php @@ -32,7 +32,7 @@ elseif ( preg_match('/Nav/', $_SERVER['HTTP_USER_AGENT']) || preg_match('/Mozill $is_IE = ( $is_macIE || $is_winIE ); // Server detection -$is_apache ((strpos($_SERVER['SERVER_SOFTWARE'], 'Apache') !== false) || (strpos($_SERVER['SERVER_SOFTWARE'], 'LiteSpeed') !== false)) ? 1 : 0; +$is_apache = ((strpos($_SERVER['SERVER_SOFTWARE'], 'Apache') !== false) || (strpos($_SERVER['SERVER_SOFTWARE'], 'LiteSpeed') !== false)) ? 1 : 0; $is_IIS = (strpos($_SERVER['SERVER_SOFTWARE'], 'Microsoft-IIS') !== false) ? 1 : 0; // if the config file does not provide the smilies array, let's define it here