When I pass this array to my saveAll function, the events get saved
but the feeding and the character do not. Is there an issue with
multiple levels of indexed arrays? Would I be better off trying to
save them individually?



array(
        (int) 0 => array(
                'Event' => array(
                        'event_type_id' => (int) 1,
                        'chronicle_id' => '1',
                        'start_date' => '2011-08-21',
                        'end_date' => '2011-08-21',
                        'confirmed_id' => (int) 1,
                        'location_id' => '4',
                        'created' => '2011-08-21 04:19:24'
                ),
                'Feeding' => array(
                        (int) 0 => array(
                                'location_id' => '42',
                                'amount' => '11',
                                'created' => '2011-08-21 04:19:24'
                        ),
                        (int) 1 => array(
                                'location_id' => '38',
                                'amount' => '11',
                                'created' => '2011-08-21 04:17:09'
                        ),
                        (int) 2 => array(
                                'location_id' => '46',
                                'amount' => '11',
                                'created' => '2011-08-21 04:18:03'
                        )
                ),
                'Character' => array(
                        (int) 0 => array(
                                'character_id' => '35',
                                'role_id' => (int) 5
                        )
                )
        ),

)


Thanks.

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


To unsubscribe from this group, send email to
[email protected] For more options, visit this group at 
http://groups.google.com/group/cake-php

Reply via email to