CakePHP: finding data after save -
CakePHP: finding data after save - i'm working on edit method. after saving data, email sent out changes made during edit. works except 1 infuriating crucial bug. here distilled downwards simply: $data = $this->supportticket->readforview($st_id); $this->supportticket->id = $st_id; if ($this->supportticket->save($this->request->data)) { //call custom model method pull view info $data = $this->supportticket->readforview($st_id); //do info } the issue $data comes out pre-save data. seek new info doesn't work. can't utilize $this->request->data because doesn't have total info want in it. the save work. if refresh view method same record, shows updated. it's saving, when find after saving giving me old data. any ideas? update: doesn't happen findbyid($st_id) must custom method. code: public function readforview($id) { $data = $this->find('first', array( 'cond...