cakephp2-php8/cake
phpnut c899c085f5 Merging fixes and enhancements into trunk.
Revision: [2448]
removing tabs in last commit

Revision: [2447]
Adding fix for limit in all associations

Revision: [2446]
Added fix for Ticket #569

Revision: [2443]
Adding fix for Ticket #592.

Revision: [2437]
Adding fix for Model::findNeighbours().
Was returning all associations and fields. Now recursive is set to 0 and only returns the prev and next keys array

Example $this->Category->findNeighbours(null, 'Category.id', 4);

Will return,

Array
(
    [prev] => Array
        (
            [Category] => Array
                (
                    [id] => 3
                )

        )

    [next] => Array
        (
            [Category] => Array
                (
                    [id] => 5
                )

        )

)

Revision: [2432]
Removed the DS constant from the plugin var when it is set in Dispatcher.
Added "$this->plugin.DS." constant in files where needed after change above.
Added fix for Ticket #577.

Revision: [2428]
Added fix for HtmlHelper::checkbox() it ignored the value provided as a parameter
Fix for Ticket #605.
Fix for Ticket #607.


git-svn-id: https://svn.cakephp.org/repo/trunk/cake@2449 3807eeeb-6ff5-0310-8944-8be069107fe0
2006-03-28 19:46:59 +00:00
..
config Merging fixes and enhancements into trunk. 2006-03-28 02:44:55 +00:00
docs Merging fixes and enhancements into trunk 2006-02-18 23:42:21 +00:00
libs Merging fixes and enhancements into trunk. 2006-03-28 19:46:59 +00:00
scripts Merging fixes and enhancements into trunk. 2006-03-26 17:31:33 +00:00
app_controller.php Merging fixes and enhancements into trunk. 2006-02-25 19:20:18 +00:00
app_model.php Merging fixes and enhancements into trunk. 2006-02-25 19:20:18 +00:00
basics.php Merging fixes and enhancements into trunk. 2006-03-19 03:26:43 +00:00
bootstrap.php Merging fixes and enhancements into trunk. 2006-03-19 03:26:43 +00:00
dispatcher.php Merging fixes and enhancements into trunk. 2006-03-28 19:46:59 +00:00