From 2aff3966115ca6deab529dfd84d318877f526201 Mon Sep 17 00:00:00 2001 From: gwoo Date: Thu, 1 May 2008 05:58:16 +0000 Subject: [PATCH] fixes #4538, missing '.' in model task when creating fixture git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@6743 3807eeeb-6ff5-0310-8944-8be069107fe0 --- cake/console/libs/tasks/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cake/console/libs/tasks/model.php b/cake/console/libs/tasks/model.php index f76aba596..992790bec 100644 --- a/cake/console/libs/tasks/model.php +++ b/cake/console/libs/tasks/model.php @@ -690,7 +690,7 @@ class ModelTask extends Shell { foreach ($assoc as $key => $value) { if (is_array($value)) { foreach ($value as $class) { - $fixture[] = "'{$fixtureInc}" . Inflector::underscore($class) ."'"; + $fixture[] = "'{$fixtureInc}." . Inflector::underscore($class) ."'"; } } }