CodeIgniter-MY_Model
CodeIgniter-MY_Model copied to clipboard
restore doesn't return affected rows
hello,
restore function doesn't return the number of affected rows
any one has same problem as me ?
Solution for the problem above
change
if($affected_rows = $this->_database->update($this->table,array($this->_deleted_at_field=>NULL)))
by
if($affected_rows = $this->update(array($this->_deleted_at_field=>NULL)))