We should look for NULL instead of 'NULL' here ...

这个提交包含在:
phl0 2023-04-24 22:38:20 +02:00
父节点 d613943973
当前提交 54ea030222
找不到此签名对应的密钥
GPG 密钥 ID: 48EA1E640798CA9A

查看文件

@ -3637,7 +3637,7 @@ class Logbook_model extends CI_Model {
}
public function check_for_station_id() {
$this->db->where('station_id =', 'NULL');
$this->db->where('station_id =', NULL);
$query = $this->db->get($this->config->item('table_name'));
if($query->num_rows() >= 1) {
return 1;