How does unbindModel happen in cake?
$this->User->unbindModel(array(\'hasAndBelongsToMany\' => array(\'Friend\')));
I wrote this i
From the manual:
Removing or adding associations using bind- and unbindModel() only works for the next model operation unless the second parameter has been set to
false. If the second parameter has been set tofalse, the bind remains in place for the remainder of the request.
In other words, after you paginate() or find() or do anything else with the model, the unbinding will be reversed.