From 3f036e91d4c024b33d9918370f9a513bd0a3fb2e Mon Sep 17 00:00:00 2001 From: phl0 Date: Thu, 5 Mar 2020 15:16:46 +0100 Subject: [PATCH] Fix error if nothing is selected at all in Awards --- application/models/Dxcc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/models/Dxcc.php b/application/models/Dxcc.php index 1d677793..162fa45e 100644 --- a/application/models/Dxcc.php +++ b/application/models/Dxcc.php @@ -223,7 +223,7 @@ class DXCC extends CI_Model { } } - if ($dxccMatrix) { + if (isset($dxccMatrix)) { return $dxccMatrix; } else {