diff --git a/app/controllers/sar.php b/app/controllers/sar.php index 71c4239..91079c3 100755 --- a/app/controllers/sar.php +++ b/app/controllers/sar.php @@ -1635,7 +1635,7 @@ public function examination($method = null, $id = null) //generate updated marksheet as csv file if (!empty($resultSubCode)) { - // updateMarksheet($fileName, $examResults, $newFileName); + updateMarksheet($fileName, $examResults, $newFileName); } $data['subjectDetails'] = $subjectDetails; diff --git a/app/core/model.php b/app/core/model.php index 6415cc2..9cb7439 100755 --- a/app/core/model.php +++ b/app/core/model.php @@ -294,7 +294,7 @@ public function joinWhere($tables, $columns, $conditions, $whereConditions, $gro if ($limit) { $query .= " LIMIT $limit"; } - show($query); + // show($query); // Execute the query return $this->query($query); }