From 29f60115d6c69d5dcf5ec3fff6cc4727af45c599 Mon Sep 17 00:00:00 2001 From: Andy Date: Mon, 29 Feb 2016 10:27:23 +0000 Subject: [PATCH] Missing '+' caused totals to be incorrect. --- 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 df101839..53981fa9 100644 --- a/application/models/dxcc.php +++ b/application/models/dxcc.php @@ -37,7 +37,7 @@ class DXCC extends CI_Model { } // update stats - $results[$row->COL_COUNTRY][$row->COL_BAND] = $row->cnt; + $results[$row->COL_COUNTRY][$row->COL_BAND] += $row->cnt; } // print_r($results);