mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-20 00:12:15 +00:00
Bug: Studierenden-Ansicht: Abmeldung bearbeiten bei mehrfachen Abmeldungen
This commit is contained in:
@@ -1204,8 +1204,12 @@ class AntragLib
|
||||
$where = [
|
||||
'prestudent_id' => $prestudent_id
|
||||
];
|
||||
if ($typ)
|
||||
$where['typ'] = $typ;
|
||||
if ($typ) {
|
||||
if (is_array($typ))
|
||||
$this->_ci->StudierendenantragModel->db->where_in('typ', $typ);
|
||||
else
|
||||
$where['typ'] = $typ;
|
||||
}
|
||||
$result = $this->_ci->StudierendenantragModel->loadWithStatusWhere($where);
|
||||
if (isError($result))
|
||||
return $result;
|
||||
|
||||
Reference in New Issue
Block a user