From b891f442f766bc34538ca8d8228beafac525460b Mon Sep 17 00:00:00 2001 From: Unknown Date: Fri, 3 Nov 2017 15:48:59 +0100 Subject: [PATCH] =?UTF-8?q?Funktion=20getAllForBewerbung=20ge=C3=A4ndert?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Aus der Funktion getAllForBewerbung wurde die studiengangbezeichnung (de und en) entfernt. Die Studiengangsbezeichnung kommt nun aus dem Studienplan. --- include/studiengang.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/studiengang.class.php b/include/studiengang.class.php index 8af5f2781..9d539626c 100755 --- a/include/studiengang.class.php +++ b/include/studiengang.class.php @@ -218,9 +218,9 @@ class studiengang extends basis_db * @param string $order Default: typ, studiengangbezeichnung, tbl_lgartcode.bezeichnung ASC. Spalten, nach denen Sortiert werden soll. * @return boolean */ - public function getAllForBewerbung($order = 'typ, studiengangbezeichnung, tbl_lgartcode.bezeichnung ASC') + public function getAllForBewerbung($order = 'typ, tbl_lgartcode.bezeichnung ASC') { - $qry = 'SELECT DISTINCT studiengang_kz, typ, organisationseinheittyp_kurzbz, studiengangbezeichnung, standort, studiengangbezeichnung_englisch, lgartcode, tbl_lgartcode.bezeichnung ' + $qry = 'SELECT DISTINCT studiengang_kz, typ, organisationseinheittyp_kurzbz, standort, lgartcode, tbl_lgartcode.bezeichnung ' . 'FROM lehre.vw_studienplan ' . 'LEFT JOIN bis.tbl_lgartcode USING (lgartcode) ' . 'WHERE onlinebewerbung IS TRUE '