From 5caeb07339fa8079c99094bb11c6d56c78bf20ba Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Wed, 6 Jan 2010 21:27:25 +0000 Subject: [PATCH] Minor followup to r60744, fix for comment 2 --- includes/GlobalFunctions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/GlobalFunctions.php b/includes/GlobalFunctions.php index f5b33d7f4a..306498eaf5 100644 --- a/includes/GlobalFunctions.php +++ b/includes/GlobalFunctions.php @@ -1285,7 +1285,7 @@ function wfArrayToCGI( $array1, $array2 = null ) $cgi = ''; foreach ( $array1 as $key => $value ) { - if ( $value != '' ) { + if ( $value !== '' ) { if ( $cgi != '' ) { $cgi .= '&'; } -- 2.20.1