diff --git a/cis/testtool/login.php b/cis/testtool/login.php
index 60447ee52..208e0b91c 100644
--- a/cis/testtool/login.php
+++ b/cis/testtool/login.php
@@ -640,6 +640,8 @@ elseif (isset($prestudent_id))
});
foreach ($ps_arr->result as $ps_obj)
{
+ if ($ps_obj->bewerbung_abgeschicktamum === null)
+ continue;
echo '
';
$stg = new Studiengang($ps_obj->studiengang_kz);
$sto = new Studienordnung();
diff --git a/include/prestudent.class.php b/include/prestudent.class.php
index 32961b2be..348a1aba1 100644
--- a/include/prestudent.class.php
+++ b/include/prestudent.class.php
@@ -552,7 +552,8 @@ class prestudent extends person
typ,
tbl_studiengangstyp.bezeichnung AS typ_bz,
ausbildungssemester,
- tbl_orgform.bezeichnung_mehrsprachig
+ tbl_orgform.bezeichnung_mehrsprachig,
+ bewerbung_abgeschicktamum
FROM
public.tbl_prestudentstatus
JOIN
@@ -636,6 +637,7 @@ class prestudent extends person
$obj->typ = $row->typ;
$obj->typ_bz = $row->typ_bz;
$obj->ausbildungssemester = $row->ausbildungssemester;
+ $obj->bewerbung_abgeschicktamum = $row->bewerbung_abgeschicktamum;
$obj->orgform_bezeichnung = $this->db_parse_lang_array($row->bezeichnung_mehrsprachig);
$this->result[] = $obj;