01-17-2010, 08:20 PM
[eluser]megabyte[/eluser]
I would change this:
to this though:
I would change this:
Code:
public function get_many_by() {
$where =& func_get_args();
$this->_set_where($where);
return $this->get_all();
}
to this though:
Code:
public function get_many_by() {
$where =& func_get_args();
$this->_set_where($where);
return $this->db->get($this->_table)
->result();
}