After performing a find on a model I would expect the result to be of the format
Array
(
[0] => Array
(
[ModelName] => Array
(
[id] => 83
[field1] => value1
[field2] => value2
[field3] => value3
)
)
)
However, what I appear to be getting is
Array
(
[0] => Array
(
[0] => Array
(
[id] => 83
[field1] => value1
[field2] => value2
[field3] => value3
)
)
)
Note the missing model name.
I've only been getting this problem since migrating across to what appears to be a very poorly configured VPS that I now have full control over.
My problem is, I can't think of anything that would cause this problem. Any ideas greatly appreciated.