From 71f98ab0e1a0b78d58f031798a8e50823f0f20f5 Mon Sep 17 00:00:00 2001 From: Ryan Zink Date: Mon, 14 Dec 2020 23:22:51 -0700 Subject: [PATCH] Case correction on timeplotter for satellite contacts --- application/models/Timeplotter_model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/models/Timeplotter_model.php b/application/models/Timeplotter_model.php index ba8d0c86..ae3f4669 100644 --- a/application/models/Timeplotter_model.php +++ b/application/models/Timeplotter_model.php @@ -71,7 +71,7 @@ class Timeplotter_model extends CI_Model $this->db->select('time(col_time_on) time, col_call as callsign'); if ($postdata['band'] != 'All') { - if ($postdata['band'] == 'sat') { + if ($postdata['band'] == 'SAT') { $this->db->where('col_prop_mode', $postdata['band']); } else {