From dc94e2f0ce797c930f2ba96f577dc390eb03b075 Mon Sep 17 00:00:00 2001 From: gandhimathi Date: Sat, 26 May 2018 14:26:46 +0530 Subject: [PATCH] batch list desc in broad cast --- Apollo/api/application/models/Broadcast_model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Apollo/api/application/models/Broadcast_model.php b/Apollo/api/application/models/Broadcast_model.php index fa2d9a82..cd1aadd8 100755 --- a/Apollo/api/application/models/Broadcast_model.php +++ b/Apollo/api/application/models/Broadcast_model.php @@ -104,7 +104,7 @@ class Broadcast_model extends CI_Model { $courseDetails = $courDetails->result(); $resultArr['Course'] = $courseDetails; // Batch Details - $this->db->select('t3.BatchName, t3.BatchCode'); + $this->db->select('t3.BatchName, t3.BatchCode,t3.BatchDate'); $this->db->from('' . BATCH . ' as t3'); $this->db->where('t3.UniversityID', $clip->UniversityID); $this->db->where('t3.IsActive', 1);