[eQSL] Use update instead of replace when marking all as sent. Didn't work with replace for me.

pull/1524/head
Andreas 2022-07-04 19:30:43 +02:00
rodzic df7d80b537
commit 7d19f36d86
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -13,7 +13,7 @@ class Eqslmethods_model extends CI_Model {
'COL_EQSL_QSLSDATE' => date('Y-m-d')." 00:00:00",
);
$this->db->replace($this->config->item('table_name'), $data);
$this->db->update($this->config->item('table_name'), $data);
}
}