Adjusted lotw_cert query to stop group by error that some where seeing if MySQL Servers running in strict

这个提交包含在:
Peter Goodhall 2020-09-03 23:05:38 +01:00
父节点 762676b69e
当前提交 249c659430

查看文件

@ -17,8 +17,8 @@ class LotwCert extends CI_Model {
|
*/
function lotw_certs($user_id) {
$this->db->where('user_id', $user_id);
$this->db->group_by("callsign");
$this->db->order_by('cert_dxcc', 'ASC');
$query = $this->db->get('lotw_certs');