From f3f48c6c843c1580d1eb0629a26ec470bdb0e544 Mon Sep 17 00:00:00 2001 From: Andreas Kristiansen <6977712+AndreasK79@users.noreply.github.com> Date: Fri, 25 Jul 2025 12:28:22 +0200 Subject: [PATCH] Cosmetics on message --- application/controllers/User.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/controllers/User.php b/application/controllers/User.php index d8042aeb8..7b97f1d95 100644 --- a/application/controllers/User.php +++ b/application/controllers/User.php @@ -1445,7 +1445,7 @@ class User extends CI_Controller { function check_email($mail) { if (($this->session->userdata('user_email') != $mail) && ($this->user_model->exists_by_email($mail) > 0)) { - $this->form_validation->set_message('check_email', sprintf(__("Couldn't set account to this email. Please try another address than (%s)"),$mail)); + $this->form_validation->set_message('check_email', sprintf(__("Couldn't set account to this email. Please try another address than \"%s\"."), $mail)); return FALSE; } else { return TRUE;