From 690080035a5ea814b29fccc4d3b312e82230faeb Mon Sep 17 00:00:00 2001 From: Harald Bamberger Date: Mon, 21 Oct 2024 13:05:47 +0200 Subject: [PATCH] fix umlauts in variable name --- application/controllers/Cis4.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/application/controllers/Cis4.php b/application/controllers/Cis4.php index ad4b2dbf9..e2b49c388 100644 --- a/application/controllers/Cis4.php +++ b/application/controllers/Cis4.php @@ -28,12 +28,12 @@ class Cis4 extends FHC_Controller public function index() { $this->load->model('person/Person_model','PersonModel'); - $begrüsung = $this->PersonModel->getFirstName(getAuthUID()); - if(isError($begrüsung)) + $begruesung = $this->PersonModel->getFirstName(getAuthUID()); + if(isError($begruesung)) { show_error("name couldn't be loaded for username ".getAuthUID()); } - $begrüsung = getData($begrüsung); - $this->load->view('CisVue/Dashboard.php',["name"=> $begrüsung]); + $begruesung = getData($begruesung); + $this->load->view('CisVue/Dashboard.php',["name"=> $begruesung]); } }