Prueba cambiando esto:
por esto:
y esto:
Código PHP:
Ver originalif ($this->db->trans_status() === false) {
return false;
} else {
return true;
}
por
Código PHP:
Ver originalif ($this->db->trans_status()=== FALSE)
{
$this->db->trans_rollback();
return false;
}else{
$this->db->trans_commit();
return true;
}