in the beforeSave() callback I unset a field doing:
unset($this->data['Company']['myField']);
Then, in my Company controller if I do:
debug($this->request->data)
after the save()
I still see the field i unset in the model.
It seems that the change only affect the model scope and not the controller.
how can i update my $this->request->data
as the data in model?
thanks