From 4a45929937ba200e258b3001dd01b03df2e030c1 Mon Sep 17 00:00:00 2001 From: DB4SCW Date: Tue, 9 Sep 2025 10:14:55 +0000 Subject: [PATCH] make error message more precise. can only happen here. --- application/controllers/Hrdlog.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/controllers/Hrdlog.php b/application/controllers/Hrdlog.php index e5554cd9a..94167720d 100644 --- a/application/controllers/Hrdlog.php +++ b/application/controllers/Hrdlog.php @@ -67,8 +67,8 @@ class Hrdlog extends CI_Controller { //check for credential errors before accessing them if($result == false){ $data['status'] = 'Credential_Error'; - $data['infomessage'] = __("HRD Log upload for this station is disabled or credentials not filled in completely."); - $data['errormessages'] = array(__("HRD Log upload for this station is disabled or credentials not filled in completely.")); + $data['infomessage'] = __("HRD Log upload for this station is disabled."); + $data['errormessages'] = array(__("HRD Log upload for this station is disabled.")); echo json_encode($data); return; }