We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8439a3 commit 1c654fdCopy full SHA for 1c654fd
src/Plugin.php
@@ -289,9 +289,9 @@ public function buildPHPConfig()
289
290
foreach (UI::settingsOfType(UI::SETTING_INPUT_TYPE_BOOLEAN) as $setting) {
291
292
- if (isset($config[$setting]) && $config[$setting] == 'false') {
+ if (isset($config[$setting]) && $config[$setting] === 'false') {
293
$config[$setting] = false;
294
- } else if (isset($config[$setting]) && $config[$setting] == 'true') {
+ } else if (isset($config[$setting]) && $config[$setting] === 'true') {
295
$config[$setting] = true;
296
}
297
0 commit comments