mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-15 11:09:28 +00:00
constant
This commit is contained in:
@@ -1188,7 +1188,7 @@ class lehrveranstaltung extends basis_db
|
||||
JOIN lehre.tbl_studienplan_lehrveranstaltung
|
||||
USING(lehrveranstaltung_id)
|
||||
WHERE tbl_studienplan_lehrveranstaltung.studienplan_id=" . $this->db_add_param($studienplan_id, FHC_INTEGER);
|
||||
if (defined("CIS_PROFIL_STUDIENPLAN_MODULE_AUSBLENDEN") && ("CIS_PROFIL_STUDIENPLAN_MODULE_AUSBLENDEN" === true))
|
||||
if (defined("CIS_PROFIL_STUDIENPLAN_MODULE_AUSBLENDEN") && CIS_PROFIL_STUDIENPLAN_MODULE_AUSBLENDEN)
|
||||
$qry .= " AND tbl_lehrveranstaltung.lehrtyp_kurzbz != 'modul'";
|
||||
if (!is_null($semester))
|
||||
{
|
||||
@@ -1289,7 +1289,7 @@ class lehrveranstaltung extends basis_db
|
||||
{
|
||||
if ($row->studienplan_lehrveranstaltung_id_parent == ''
|
||||
|| (defined("CIS_PROFIL_STUDIENPLAN_MODULE_AUSBLENDEN")
|
||||
&& "CIS_PROFIL_STUDIENPLAN_MODULE_AUSBLENDEN" === true))
|
||||
&& CIS_PROFIL_STUDIENPLAN_MODULE_AUSBLENDEN))
|
||||
{
|
||||
$tree[$row->studienplan_lehrveranstaltung_id] = $row;
|
||||
$tree[$row->studienplan_lehrveranstaltung_id]->childs = $this->getLehrveranstaltungTreeChilds($row->studienplan_lehrveranstaltung_id);
|
||||
|
||||
Reference in New Issue
Block a user