extra check on empty field
这个提交包含在:
父节点
8f3abf6652
当前提交
0b31b54664
共有 1 个文件被更改,包括 1 次插入 和 0 次删除
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
正在加载…
在新工单中引用