Missing '+' caused totals to be incorrect.

pull/195/head
Andy 2016-02-29 10:27:23 +00:00 zatwierdzone przez root
rodzic 6bd219f1f2
commit 29f60115d6
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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);