Corrected some text in comment

This commit is contained in:
Andreas Kristiansen
2024-11-22 16:20:17 +01:00
parent 261bd38b18
commit 1fe1b36a07

View File

@@ -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();