From d2360ec8aab5ecf8cdf42865fdf12f4529a14cc1 Mon Sep 17 00:00:00 2001 From: Stephen Shkardoon Date: Wed, 23 Oct 2013 16:32:31 +1300 Subject: [PATCH] MINOR typo where display_errors wasn't checked properly --- dev/install/install.php5 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/install/install.php5 b/dev/install/install.php5 index 438a29224..d393f6062 100755 --- a/dev/install/install.php5 +++ b/dev/install/install.php5 @@ -644,7 +644,7 @@ class InstallRequirements { // special case for display_errors, check the original value before // it was changed at the start of this script. - if($settingName = 'display_errors') { + if($settingName == 'display_errors') { global $originalDisplayErrorsValue; $val = $originalDisplayErrorsValue; } else {