Hi,

Does anyone know how to get the children fist while using find
('threaded').
Instead of
Array
(
[0] => Array
(
    [Article1] => Array
    (
        [id] => 9
    )
   [Article2] => Array
    (
        [id] => 91
    )
    [children] => Array
    (
        [0] => Array
        ....
    )
 )
)
I want
Array
(
[0] => Array
(
    [children] => Array
    (
        [0] => Array
        ....
    )
    [Article1] => Array
    (
        [id] => 9
    )
   [Article2] => Array
    (
        [id] => 91
    )
 )
)

Thanks.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to