MINOR typo where display_errors wasn't checked properly

This commit is contained in:
Stephen Shkardoon 2013-10-23 16:32:31 +13:00 committed by Sean Harvey
parent 6694fc5980
commit d2360ec8aa

View File

@ -644,7 +644,7 @@ class InstallRequirements {
// special case for display_errors, check the original value before // special case for display_errors, check the original value before
// it was changed at the start of this script. // it was changed at the start of this script.
if($settingName = 'display_errors') { if($settingName == 'display_errors') {
global $originalDisplayErrorsValue; global $originalDisplayErrorsValue;
$val = $originalDisplayErrorsValue; $val = $originalDisplayErrorsValue;
} else { } else {