Logs
Author: mark_story
Date: 2009-06-04 00:37:27 +0000
Increasing Model test compatibility with SQLite and Postgres
Author: DarkAngelBGE
Date: 2009-06-04 21:29:26 +0000
Small return-home-early refactoring for the File class
Author: mark_story
Date: 2009-06-05 02:43:08 +0000
Adding nullish value handling for date, datetime, and timestamp column types to DboPostgres. Empty string values now return instead of "". Fixes #6386
Author: DarkAngelBGE
Date: 2009-06-06 15:41:33 +0000
Removing duplicate START TRANSACTION sql execution in mysqli environment, fixes #6422
Author: jperras
Date: 2009-06-10 03:00:38 +0000
Refactoring model.test.php for 100 col display.
Author: gwoo
Date: 2009-06-10 17:11:17 +0000
fixes #6419, redirect with cached view page
Author: jperras
Date: 2009-06-11 03:07:38 +0000
Adding a 'client' option to EmailComponent:: for specifying the host to be used in the SMTP HELO request; defaults to env('HTTP_HOST'). Fixes #6264.
Author: gwoo
Date: 2009-06-16 20:14:50 +0000
removing delete from cache write refs #5206
Author: gwoo
Date: 2009-06-16 20:22:41 +0000
fixes #6359, array_intersect_key compatibility with php4
Author: gwoo
Date: 2009-06-16 21:35:21 +0000
fixes #6427, default datasource not loaded when ds is specified
Author: mark_story
Date: 2009-06-17 01:59:41 +0000
Updating JavascriptHelper::escapeString to properly encode utf8 characters as per the JSON spec. Test cases added, with comparisons to json_encode() Fixes #6400
Author: mark_story
Date: 2009-06-17 02:17:18 +0000
Fixing plugin prefix handling when using plugin task to bake plugin controllers. Plugin Models are correctly found, allowing bake to work. Fixes #5069
Author: mark_story
Date: 2009-06-21 15:24:09 +0000
Adding tests to Component.test. Disproves #6459
Author: mark_story
Date: 2009-06-24 18:09:14 +0000
Adding ControllerMergeVarsTestCase to more extensively test merging of vars in Controller::__mergeVars. Fixing issue where components declared in AppController would get doubled settings if no components were declared in subclasses. Fixes #6459
Author: mark_story
Date: 2009-06-24 22:02:00 +0000
Applying patch from 'mulleto'. Fixes plugin view file location with CamelCase plugin names. Test cases added. Fixes #6334
Author: mark_story
Date: 2009-06-25 13:34:28 +0000
Adding test case for api console. Fixing issue where methods with no parameters were omitted from api method lists. Fixes #6474
Author: mark_story
Date: 2009-06-27 15:25:07 +0000
Fixing Model::saveAll() PHP4 compatibility. Minor API change in __save(). __save() no longer takes a model instance as the first parameter. Because of Model implementation details in PHP4 this caused broken references. Fixes #6389, #6223
Author: mark_story
Date: 2009-06-30 00:25:09 +0000
Fixing camel cased methods in checks for allowedActions in AuthComponent under PHP5. Normalizes to lowercase method name. Fixes #6142
Author: mark_story
Date: 2009-06-30 01:14:20 +0000
Adding test cases for boolean and boolean-ish values. Fixes false being converted to '' when using Xml::toString(). Fixes #6478
Author: mark_story
Date: 2009-06-30 01:37:33 +0000
Renaming {{{SimpleTestOptions::ignore()}}} to {{{SimpleTest::ignore()}}} Refs #6425