Hi again!
It has been a while since I've posted to the forums. The newest patch for HABTM broke something, because updating record associations by setByIds doesn't delete the old ones anymore. There's no DELETE query generated.
-jyrki
I too had same problem.
Workaround
Call clear() before calling setByIds().
Example:
$this->user->group->clear();
$this->user->group->setByIds($this->params['groups']);
-jyrki
1 to 3 of 3