Merge pull request #574 from rtorralba/master

codeigniter: Fixed ->table attribute access
This commit is contained in:
Holger Rapp 2015-04-29 07:09:01 +02:00
commit 58f5da49c1

View File

@ -44,7 +44,7 @@ snippet ci_model_crudl
public function create($data)
{
if($this->db->insert($table, $data))
if($this->db->insert($this->table, $data))
return true;
else
return false;
@ -57,7 +57,7 @@ snippet ci_model_crudl
public function update($id, $data)
{
if($this->db->update($table, $data, array('id' => $id)))
if($this->db->update($this->table, $data, array('id' => $id)))
return true;
else
return false;
@ -69,12 +69,12 @@ snippet ci_model_crudl
{
$this->db->trans_start();
foreach($id as $elem)
$this->db->delete($table, array('id' => $elem));
$this->db->delete($this->table, array('id' => $elem));
$this->db->trans_complete();
}
else
{
if($this->db->delete($table, array('id' => $id)))
if($this->db->delete($this->table, array('id' => $id)))
return true;
else
return false;
@ -85,7 +85,7 @@ snippet ci_model_crudl
{
if(!is_null($limit))
$this->db->limit($limit, $offset);
return $this->db->get($table)->result();
return $this->db->get($this->table)->result();
}
}
# Load view