extra check on empty field

这个提交包含在:
Peter Goodhall 2020-09-08 00:30:16 +01:00
父节点 8f3abf6652
当前提交 0b31b54664

查看文件

@ -45,6 +45,7 @@ class User_Model extends CI_Model {
// Returns all users with lotw details // Returns all users with lotw details
function get_all_lotw_users() { function get_all_lotw_users() {
$this->db->where('user_lotw_name !=', null); $this->db->where('user_lotw_name !=', null);
$this->db->where('user_lotw_name !=', "");
$r = $this->db->get($this->config->item('auth_table')); $r = $this->db->get($this->config->item('auth_table'));
return $r; return $r;
} }