Missing '+' caused totals to be incorrect.

这个提交包含在:
Andy 2016-02-29 10:27:23 +00:00 提交者 root
父节点 6bd219f1f2
当前提交 29f60115d6

查看文件

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