Merge pull request #2073 from phl0/fixReassignFunction

pull/2077/head
Andreas Kristiansen 2023-04-24 22:42:49 +02:00 zatwierdzone przez GitHub
commit e0a04cbe41
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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;