mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 19:38:26 +00:00
2c4f362990
Revision: [4923] Fixing last commit [4922] Revision: [4922] Removing fields() method from DboDbo2 (Ticket #2444) Revision: [4921] Adding fix for #2478 corrects issue on php 4 Revision: [4919] Adding fix for #2435. Fixes issues with custom inflection rules not being used before the default rules Revision: [4916] Adding fix for #2416 fixes Invalid query when using boolean conditions in PostgreSQL Revision: [4915] Added fix for #2450 Revision: [4914] Adding fix for #2500 fixes adding of table.id when not using associated models and only wanting specific fields returned Revision: [4913] Adding fixes for test added in [4911] and [4912] Fixed #2414 fixes findBy doesn't escape WHERE condition Revision: [4912] Adding more tests for #2414 Revision: [4911] Adding tests for #2414 Revision: [4910] Adding fix for #2419 fixes issue with long lines in email messages breaking links Revision: [4909] Adding fix for #2466 fixes missed Router::__mapped reinit in Router::url() Revision: [4908] Adding fix for #2428 fixes View::renderElement() behavior with multiple view paths Revision: [4907] Adding empty files to all tmp/* directories Revision: [4906] Fixing label tests Revision: [4905] Adding additional fix for #2481 Revision: [4904] Adding fix for #2481 fixes Form::label() $tagName does not run through domId() Revision: [4903] Adding enhancement from #2483.adds scaffold index view field's label Revision: [4902] Adding tests trying to replicate #2451 and more variations of fake threaded self join Revision: [4901] Adding fix for #2491 fixes bad scaffold templates paths Revision: [4900] Adding fix for #2488 fixes Set::extract failed on assoc array if key starts with numeric Revision: [4899] Adding more tests for Set::extract() Revision: [4898] Fixing test for #2488 Revision: [4897] Adding test for #2488 Revision: [4896] Adding enhancement from #2502 replacing app with APP_DIR Revision: [4895] Adding fix for #2371, fixes HtmlHelper submit() method doesn't allow HTML entities in caption Revision: [4894] Applying fix from ticket #2485, adding test for it Revision: [4893] Applying patch from ticket #2496, adding test for it Revision: [4892] Adding test for #2494 Revision: [4891] Adding tests for #2371 Revision: [4890] Removing $fieldset = null; in FormHelper::inputs() Revision: [4889] Adding fix for #2473 Fixed undefined variable notice in Form::inputs() Revision: [4888] Fixing tests so they expect validation errors of all available models to be defined in Form helper Revision: [4887] Adding fixes from phishy. Added fixed for #2492 Revision: [4885] Fixing conflict of class names between tests Revision: [4884] Removing unneeded lines Revision: [4883] Adding test for inner model validation, including a two level test that fails Revision: [4882] Updating db_acl.sql in templates folder Revision: [4881] Adding patch and test for ticket #2369 Revision: [4880] Adding initial implementation of I18n database translation support Revision: [4879] Fixing error when using AuthComponent and DEBUG < 1 Revision: [4878] Case-insensitive matching when using array of phrases in TextHelper::highlight Revision: [4877] Fixing display of core error messages Revision: [4876] Changed name from requestAction() to testAction() Revision: [4875] Fixing small issues Revision: [4874] Added ability to auto-fixturize models when testing controllers Revision: [4873] Using reference to controller Revision: [4872] Added option to get the view vars after running action Revision: [4870] Fixed issue in CakeTestCase::requestAction() when wanting to get resulting HTML Revision: [4869] Adding URL fragment (hash) support in Router::url() (Ticket #2432) Revision: [4868] Adding undefined variable fix for PaginatorHelper::sortDir() (Ticket #2440) Revision: [4867] Moving Router::__filter() to Set::filter() Revision: [4866] Removing invalid character Revision: [4865] Adding fix for <> condition in DboSource (Ticket #2101) Revision: [4864] Removing indents from comments Revision: [4863] Added new callbacks and ability to execute CakePHP URLs from CakeTestCase Revision: [4862] working on form helper, added a submit button to form end if you pass true, added fieldset options to inputs Revision: [4861] Adding fix for misquoted SQL functions (Ticket #2199) Revision: [4860] Correcting svn properties on files Revision: [4859] Adding field map to convert aliased column names in MSSQL queries Revision: [4858] Adding auto-detection check for IIS (manually defining SERVER_IIS is no longer required), and fixing setUri for rewritten IIS URLs. Revision: [4857] Fixing problem with highlighting multiple phrases (ticket #2418) Revision: [4856] Applying patch from ticket #2417 Revision: [4855] Removed unneeded variable Revision: [4854] Added ability to import table definition and/or records from either an existing Model, or an existing table git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@4925 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.4925alpha';
|
|
?>
|