Missing '+' caused totals to be incorrect.
这个提交包含在:
父节点
6bd219f1f2
当前提交
29f60115d6
共有 1 个文件被更改,包括 1 次插入 和 1 次删除
|
|
@ -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);
|
||||
|
|
|
|||
正在加载…
在新工单中引用