in cake / libs / controller / components / auth.php on line 819, it should be
$data = $model->find(array_merge($find, $conditions), null, null, 0);
try changing it to
$data = $model->find(array_merge($find, $conditions), null, null, 1);
basically set recursive to 1; you may need to do this in some other places.
source share