Merge branch 'feature-25999/C4_cleanup' into feature-52735/C4_stundenplan_query_fix

This commit is contained in:
Johann Hoffmann
2024-10-21 13:51:21 +02:00
+4 -4
View File
@@ -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]);
}
}