From 485fa0126d4fbdd18183571a08540f2d0567ae5f Mon Sep 17 00:00:00 2001 From: Peter Goodhall Date: Fri, 15 Aug 2025 22:31:44 +0100 Subject: [PATCH] Remove commented-out array_unique call Deleted an unused, commented-out line intended to ensure unique station IDs in the logbooks_locations_array. No functional changes were made. --- application/models/Logbook_model.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/application/models/Logbook_model.php b/application/models/Logbook_model.php index da66abfd..c4d5bdb4 100755 --- a/application/models/Logbook_model.php +++ b/application/models/Logbook_model.php @@ -1704,9 +1704,6 @@ class Logbook_model extends CI_Model $logbooks_locations_array = $StationLocationsArray; } - // Ensure only unique station IDs (no duplicates) - //$logbooks_locations_array = array_unique($logbooks_locations_array); - if (empty($logbooks_locations_array)) { return array(); }