From 7d19f36d86e43fd93d74fac5b498c92273fcb043 Mon Sep 17 00:00:00 2001 From: Andreas <6977712+AndreasK79@users.noreply.github.com> Date: Mon, 4 Jul 2022 19:30:43 +0200 Subject: [PATCH] [eQSL] Use update instead of replace when marking all as sent. Didn't work with replace for me. --- application/models/Eqslmethods_model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/models/Eqslmethods_model.php b/application/models/Eqslmethods_model.php index 539be9e3..563743c4 100644 --- a/application/models/Eqslmethods_model.php +++ b/application/models/Eqslmethods_model.php @@ -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); } }