|
|
@@ -16,4 +16,5 @@
|
|
|
* @since CakePHP(tm) v 1.1.11.4062
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
|
|
*/
|
|
|
-return $config['Cake.version'] = '2.0.0';
|
|
|
+$versionFile = file(CAKE . 'VERSION.txt');
|
|
|
+return $config['Cake.version'] = array_pop($versionFile);
|