Browse Source

Fix failing test in App.

mark_story 14 years ago
parent
commit
1bc4562f3a
1 changed files with 2 additions and 1 deletions
  1. 2 1
      lib/Cake/Config/config.php

+ 2 - 1
lib/Cake/Config/config.php

@@ -17,4 +17,5 @@
  * @license       MIT License (http://www.opensource.org/licenses/mit-license.php)
  */
 $versionFile = file(CAKE . 'VERSION.txt');
-return $config['Cake.version'] = trim(array_pop($versionFile));
+$config['Cake.version'] = trim(array_pop($versionFile));
+return $config;