Fix SchemaShell configuration change.

Comparisons are done with === true. This fixes the set operation.

Fixes #14720
This commit is contained in:
mark_story 2020-06-18 21:13:41 -04:00
parent a9b8c6b60f
commit 931d3a8626

View file

@ -53,7 +53,7 @@ class SchemaShell extends AppShell {
$this->out('Cake Schema Shell');
$this->hr();
Configure::write('Cache.disable', 1);
Configure::write('Cache.disable', true);
$name = $path = $connection = $plugin = null;
if (!empty($this->params['name'])) {