Merge pull request #2584 from ss23/patch-3

MINOR typo where display_errors wasn't checked properly
This commit is contained in:
Simon Welsh 2013-10-22 20:34:33 -07:00
commit 699272a2e7

View File

@ -475,7 +475,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 {