mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Fix SchemaShell configuration change.
Comparisons are done with === true. This fixes the set operation. Fixes #14720
This commit is contained in:
parent
a9b8c6b60f
commit
931d3a8626
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ class SchemaShell extends AppShell {
|
||||||
$this->out('Cake Schema Shell');
|
$this->out('Cake Schema Shell');
|
||||||
$this->hr();
|
$this->hr();
|
||||||
|
|
||||||
Configure::write('Cache.disable', 1);
|
Configure::write('Cache.disable', true);
|
||||||
|
|
||||||
$name = $path = $connection = $plugin = null;
|
$name = $path = $connection = $plugin = null;
|
||||||
if (!empty($this->params['name'])) {
|
if (!empty($this->params['name'])) {
|
||||||
|
|
Loading…
Reference in a new issue