UHSTAT1 form: nations with sperre = true are not loaded

This commit is contained in:
KarpAlex
2023-09-25 16:45:39 +02:00
parent 4242f75fde
commit 972e9b7025
+1 -1
View File
@@ -321,7 +321,7 @@ class UHSTAT1 extends FHC_Controller
$this->NationModel->addSelect("nation_code, $nationTextFieldName AS nation_text");
$this->NationModel->addOrder("nation_text");
$nationRes = $this->NationModel->load();
$nationRes = $this->NationModel->loadWhere('sperre IS NULL OR sperre = FALSE');
if (isError($nationRes)) return $nationRes;