reformatted

这个提交包含在:
int2001 2023-12-29 08:28:34 +00:00
父节点 4089e6e3e8
当前提交 314fe3a948
找不到此签名对应的密钥
GPG 密钥 ID: DFB1C13CD2DB037B

查看文件

@ -1354,7 +1354,9 @@ class Logbook_model extends CI_Model {
$this->db->group_start();
$this->db->where($this->config->item('table_name').'.COL_CALL', $callsign);
$this->db->or_like($this->config->item('table_name').'.COL_CALL', '/'.$callsign,'before');
$this->db->or_like($this->config->item('table_name').'.COL_CALL', $callsign.'/','after'); $this->db->or_like($this->config->item('table_name').'.COL_CALL', '/'.$callsign.'/');
$this->db->or_like($this->config->item('table_name').'.COL_CALL', $callsign.'/','after');
$this->db->or_like($this->config->item('table_name').'.COL_CALL', '/'.$callsign.'/');
$this->db->group_end();
$this->db->where('station_profile.user_id', $this->session->userdata('user_id'));
$this->db->where_in('station_profile.station_id', $logbooks_locations_array);