From 5e9d0c59758714fa7c7e7601321efa88acbd32b5 Mon Sep 17 00:00:00 2001 From: Nightprince Date: Sun, 18 Aug 2024 11:45:54 +0330 Subject: [PATCH] App/Email Helper: clean code --- application/helpers/email_helper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/helpers/email_helper.php b/application/helpers/email_helper.php index 0cd42f333..c18c0b78d 100644 --- a/application/helpers/email_helper.php +++ b/application/helpers/email_helper.php @@ -79,5 +79,5 @@ function sendMail(string $receiver, string $subject, string $username, string $m 'timestamp' => time() ]; - $CI->db->table('email_log', )->insert($data2); + $CI->db->table('email_log')->insert($data2); }