From 6358208e322732a0d1038fd68ba91b81ec96f950 Mon Sep 17 00:00:00 2001 From: Brian Porter Date: Mon, 11 Aug 2014 09:23:56 -0500 Subject: [PATCH] Figures it'd be a missing paren. --- 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 1d30fad0af3..49fc79b2305 100644 --- a/lib/Cake/Console/Command/SchemaShell.php +++ b/lib/Cake/Console/Command/SchemaShell.php @@ -66,7 +66,7 @@ public function startup() { list($this->params['plugin'], $splitName) = pluginSplit($name); $name = $this->params['name'] = $splitName; } - if ($name && empty($this->params['file']) { + if ($name && empty($this->params['file'])) { $this->params['file'] = Inflector::underscore($name); } else { $this->params['file'] = 'schema.php';