Don't show GROUP attribute as column (#68)

This commit is contained in:
jekkos
2018-09-06 01:16:05 +02:00
committed by jekkos
parent 9d0da3e6b8
commit 2fc353cd14

View File

@@ -169,6 +169,7 @@ class Attribute extends CI_Model
$this->db->from('attribute_definitions');
$this->db->where('definition_flags &', $definition_flags);
$this->db->where('deleted', 0);
$this->db->where('definition_type <>', GROUP);
$this->db->order_by('definition_id');
$results = $this->db->get()->result_array();