Fehler behoben beim Anlegen von StudienplanLehrveranstaltungszuordnungen

wodurch booleans nicht korrekt gespeichert wurden
This commit is contained in:
Andreas Österreicher
2017-12-11 17:34:39 +01:00
parent e94076b451
commit 9bb368302f
+3 -3
View File
@@ -538,9 +538,9 @@ class studienplan extends basis_db
$this->db_add_param($this->studienplan_lehrveranstaltung_id_parent, FHC_INTEGER) . ', ' .
$this->db_add_param($this->pflicht, FHC_BOOLEAN) . ', ' .
$this->db_add_param($this->koordinator) . ', ' .
$this->db_add_param($this->curriculum) . ', ' .
$this->db_add_param($this->export) . ', ' .
$this->db_add_param($this->genehmigung) . ', ' .
$this->db_add_param($this->curriculum, FHC_BOOLEAN) . ', ' .
$this->db_add_param($this->export, FHC_BOOLEAN) . ', ' .
$this->db_add_param($this->genehmigung, FHC_BOOLEAN) . ', ' .
'now(), ' .
$this->db_add_param($this->insertvon) . ');';
}