diff --git a/application/models/Dxcluster_model.php b/application/models/Dxcluster_model.php
index fc9b4551..23108b58 100644
--- a/application/models/Dxcluster_model.php
+++ b/application/models/Dxcluster_model.php
@@ -56,8 +56,8 @@ class Dxcluster_model extends CI_Model {
$dxcc=$dxccObj->dxcc_lookup($singlespot->spotter,date('Ymd', time()));
$singlespot->dxcc_spotter=$dxcc;
}
- if ( ($de != '') && (property_exists($singlespot->dxcc_spotter,'cont')) ){ // If we have a "de continent" and a filter-wish filter on that
- if ($de == $singlespot->dxcc_spotter->cont) {
+ if ( ($de != '') && ($de != 'Any') && (property_exists($singlespot->dxcc_spotter,'cont')) ){ // If we have a "de continent" and a filter-wish filter on that
+ if (strtolower($de) == strtolower($singlespot->dxcc_spotter->cont)) {
$singlespot->worked_call = ($this->logbook_model->check_if_callsign_worked_in_logbook($singlespot->spotted, $logbooks_locations_array, $singlespot->band) == 1);
array_push($spotsout,$singlespot);
}
diff --git a/application/views/bandmap/list.php b/application/views/bandmap/list.php
index a193a5ac..8abd3271 100644
--- a/application/views/bandmap/list.php
+++ b/application/views/bandmap/list.php
@@ -27,6 +27,17 @@
+
+