diff --git a/Apollo/api/application/models/Course_model.php b/Apollo/api/application/models/Course_model.php index 03935f7f..77535eaa 100755 --- a/Apollo/api/application/models/Course_model.php +++ b/Apollo/api/application/models/Course_model.php @@ -305,7 +305,7 @@ class Course_model extends CI_Model { $this->db->order_by('CSID','ASC'); $this->db->where('CSU.CourseID',$courseID); $this->db->where('CSU.IsActive','1'); - $this->db->where('SM.IsActive','1'); + // $this->db->where('SM.IsActive','1'); $this->db->from(COURSESUBJECT.' as CSU'); $this->db->join(SUBJECTMASTER.' as SM', 'SM.SubjectID = CSU.SubjectID'); $subDetails = $this->db->get();