Remove counting of configurations in project model
If we need to know how many configurations we've got, we can simply count them when needed...
This commit is contained in:
@@ -106,9 +106,8 @@ class Project extends CI_Model {
|
|||||||
$query = $this->db->get_where('configurations', array('project_id' => $project_id));
|
$query = $this->db->get_where('configurations', array('project_id' => $project_id));
|
||||||
|
|
||||||
$configurations = $query->result_array();
|
$configurations = $query->result_array();
|
||||||
$configuration_count = $query->num_rows();
|
|
||||||
|
|
||||||
return array('count' => $configuration_count, 'configs' => $configurations);
|
return $configurations;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user