From 54ad24d3bef39378f9f40d5a0d22fa1a96a7f329 Mon Sep 17 00:00:00 2001 From: phl0 Date: Wed, 28 Dec 2022 23:47:44 +0100 Subject: [PATCH] Set qsoid to 0 for not-in-log requests --- application/models/Oqrs_model.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/application/models/Oqrs_model.php b/application/models/Oqrs_model.php index 9214a35e..25201da6 100644 --- a/application/models/Oqrs_model.php +++ b/application/models/Oqrs_model.php @@ -145,6 +145,7 @@ class Oqrs_model extends CI_Model { 'email' => xss_clean($postdata['email']), 'qslroute' => '', 'status' => '1', + 'qsoid' => '0', ); $this->db->insert('oqrs', $data); @@ -249,4 +250,4 @@ class Oqrs_model extends CI_Model { return ''; } -} \ No newline at end of file +}