From 27bd6bc2c07bce97e27179980657b6349dea2055 Mon Sep 17 00:00:00 2001 From: Andreas <6977712+AndreasK79@users.noreply.github.com> Date: Mon, 28 Feb 2022 18:01:51 +0100 Subject: [PATCH] Re-added a missing where-statement --- application/models/Logbook_model.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/application/models/Logbook_model.php b/application/models/Logbook_model.php index a1bc45a3..a3de17a3 100755 --- a/application/models/Logbook_model.php +++ b/application/models/Logbook_model.php @@ -286,6 +286,8 @@ class Logbook_model extends CI_Model { break; } + $this->db->where_in('station_id', $logbooks_locations_array); + if ($band != 'All') { if($band != "SAT") { $this->db->where('COL_PROP_MODE !=', 'SAT');