From 1fe1b36a0740e842ebcc4b48be406bafe0238cdb Mon Sep 17 00:00:00 2001 From: Andreas Kristiansen <6977712+AndreasK79@users.noreply.github.com> Date: Fri, 22 Nov 2024 16:20:17 +0100 Subject: [PATCH] Corrected some text in comment --- application/models/Dayswithqso_model.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/application/models/Dayswithqso_model.php b/application/models/Dayswithqso_model.php index 452ec7c77..518c1ef3c 100644 --- a/application/models/Dayswithqso_model.php +++ b/application/models/Dayswithqso_model.php @@ -201,7 +201,7 @@ class Dayswithqso_model extends CI_Model } /* - * Returns the total number of QSOs made for each day of the week (Monday to Sunday) + * Returns the total number of QSOs made for each month of the year */ function getMonthsOfYear() { $this->load->model('logbooks_model'); @@ -221,7 +221,6 @@ class Dayswithqso_model extends CI_Model ORDER BY FIELD(month, 'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December')"; - $query = $this->db->query($sql); return $query->result();