From 931d3a8626f85610c9eaf27d2e153ceec38d0fea Mon Sep 17 00:00:00 2001 From: mark_story Date: Thu, 18 Jun 2020 21:13:41 -0400 Subject: [PATCH] Fix SchemaShell configuration change. Comparisons are done with === true. This fixes the set operation. Fixes #14720 --- lib/Cake/Console/Command/SchemaShell.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Cake/Console/Command/SchemaShell.php b/lib/Cake/Console/Command/SchemaShell.php index f23c2b70e..6a704bda8 100644 --- a/lib/Cake/Console/Command/SchemaShell.php +++ b/lib/Cake/Console/Command/SchemaShell.php @@ -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'])) {