mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Fix version config.
This commit is contained in:
parent
23178df504
commit
ff29b194ed
1 changed files with 2 additions and 2 deletions
|
@ -16,5 +16,5 @@
|
|||
* @since CakePHP(tm) v 1.1.11.4062
|
||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||
*/
|
||||
$config['Cake.version'] = '2.0.5';
|
||||
return $config;
|
||||
$versionFile = file(CAKE . 'VERSION.txt');
|
||||
return $config['Cake.version'] = trim(array_pop($versionFile));
|
||||
|
|
Loading…
Reference in a new issue