Browse Source

Merge pull request #998 from dereuromark/2.3-bake-fixture-fix

Remove double semicolon in generated fixtures.

Fixes #3429
Mark Story 13 years ago
parent
commit
5ccba463bc
1 changed files with 2 additions and 2 deletions
  1. 2 2
      lib/Cake/Console/Command/Task/FixtureTask.php

+ 2 - 2
lib/Cake/Console/Command/Task/FixtureTask.php

@@ -279,8 +279,8 @@ class FixtureTask extends BakeTask {
  * @return string fields definitions
  */
 	protected function _generateSchema($tableInfo) {
-		$schema = $this->_Schema->generateTable('f', $tableInfo);
-		return substr($schema, 13, -2);
+		$schema = trim($this->_Schema->generateTable('f', $tableInfo), "\n");
+		return substr($schema, 13, -1);
 	}
 
 /**