MINOR typo where display_errors wasn't checked properly

This commit is contained in:
Stephen Shkardoon 2013-10-23 16:32:31 +13:00
parent 5235a3f3a2
commit 696e6f65ab

View File

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