From 83c6a2121cc249cc76c782ece217e218dd771882 Mon Sep 17 00:00:00 2001 From: phl0 Date: Fri, 2 May 2025 15:37:54 +0200 Subject: [PATCH] Use existing error message (with hint) --- 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 ed6f75e04..f62f40826 100644 --- a/application/controllers/User.php +++ b/application/controllers/User.php @@ -1177,7 +1177,7 @@ class User extends CI_Controller { log_message('debug', 'First Login Wizard Form Data: '.print_r($stationdata, true)); if (!$this->check_locator($stationdata['station_locator'])) { - $this->session->set_flashdata('fl_wiz_error', __("Invalid Locator!")); + $this->session->set_flashdata('fl_wiz_error', sprintf(__("Please check value for grid locator (%s)"), strtoupper($stationdata['station_locator']))); redirect('dashboard'); }