If you are using same version of CakePHP as me (latest one:1.1.7.3363),
then the error at line 1019 is with foreach and $records not being an array.

                $records = $model->findAll("$field = '$id'", $model->primaryKey, null, null);

                foreach($records as $record) {
                    $model->del($record[$data['className']][$model->primaryKey]);
                }

It seems to me that the findAll is return null, probably caused by sql errror somewhere.
You might want to switch DEBUG to 2 to see sql queries executed, or check error log.

Hope this help.

Sohei

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake PHP" group.
To post to this group, send email to [email protected]
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