mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
dddbaa69f2
Revision: [4449] Adding fix for #2051 Adding additional methods to the ClassRegistry to set mappings to class names. Added ClassRegistry::map() in the model to set mappings where needed Revision: [4448] Adding 'evalScripts' fix for AjaxHelper (Ticket #2048) Revision: [4447] Fixing tests for DboSource after changes made to remove extra white spaces Revision: [4445] Updating test suite Revision: [4444] Removing directories from cases. Updating DispatcherTest Revision: [4443] Updating test suite Revision: [4442] fixing h2 in test suite Revision: [4441] Removing redundant group test Revision: [4440] Updating html for test suite. Added error page when SimpleTest is not installed. Fixed model.test.php failing on PHP 4 Revision: 4439 updating test suite layout Revision: [4438] Removing all language file svn these are now located at http://cakeforge.org/projects/translations/ Revision: [4437] Adding fix for #2047 Revision: [4436] Fixing notice when not group tests are found Revision: [4435] Fixing unset variable error Revision: [4434] Updating test suite with correct paths.php Changed vendor() to return true or false Revision: [4433] Adding test suite to the core. Creating directories for application level testing Revision: [4432] Fixing default extension parsing behavior for Router::parseExtensions() Revision: [4430] Moving tests and test suite in the 1.2.x.x core releases Revision: [4429] Updating Router::parseExtensions() so that parameters do not need to be wrapped in an array Revision: [4427] Fixing AjaxHelper::form() for compatibility with FormHelper::create() Revision: [4426] Disabling Model::loadInfo() for models that do not use tables git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@4451 3807eeeb-6ff5-0310-8944-8be069107fe0
28 lines
No EOL
869 B
PHP
28 lines
No EOL
869 B
PHP
<?php
|
|
/* SVN FILE: $Id$ */
|
|
/**
|
|
* Core Configurations.
|
|
*
|
|
* PHP versions 4 and 5
|
|
*
|
|
* CakePHP(tm) : Rapid Development Framework <http://www.cakephp.org/>
|
|
* Copyright 2005-2007, Cake Software Foundation, Inc.
|
|
* 1785 E. Sahara Avenue, Suite 490-204
|
|
* Las Vegas, Nevada 89104
|
|
*
|
|
* Licensed under The MIT License
|
|
* Redistributions of files must retain the above copyright notice.
|
|
*
|
|
* @filesource
|
|
* @copyright Copyright 2005-2007, Cake Software Foundation, Inc.
|
|
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP(tm) Project
|
|
* @package cake
|
|
* @subpackage cake.app.config
|
|
* @since CakePHP(tm) v 1.1.11.4062
|
|
* @version $Revision$
|
|
* @modifiedby $LastChangedBy$
|
|
* @lastmodified $Date$
|
|
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
|
*/
|
|
$config['Cake.version'] = '1.2.0.4451alpha';
|
|
?>
|