From e48b94b858c35cc0d20e248c305f2b54079b4400 Mon Sep 17 00:00:00 2001 From: Harald Bamberger Date: Fri, 17 Apr 2026 12:35:55 +0200 Subject: [PATCH] studiengangskuerzel statt kurzbzlang --- application/models/organisation/Studiengang_model.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/application/models/organisation/Studiengang_model.php b/application/models/organisation/Studiengang_model.php index 08f40f6d4..9e51dc561 100644 --- a/application/models/organisation/Studiengang_model.php +++ b/application/models/organisation/Studiengang_model.php @@ -594,8 +594,10 @@ class Studiengang_model extends DB_Model $this->addSelect('p.prestudent_id'); $this->addSelect('pers.vorname'); $this->addSelect('pers.nachname'); - $this->addSelect("CONCAT(UPPER(pers.nachname), ' ', pers.vorname, - ' (', " . $this->dbTable . ".bezeichnung, ', ', " . $this->dbTable . ".kurzbzlang,')') AS name"); + $this->addSelect("CONCAT(UPPER(pers.nachname), ' ', pers.vorname, ' (', " + . $this->dbTable . ".bezeichnung, ', ', " + . "UPPER(" . $this->dbTable . ".typ), " + . "UPPER(" . $this->dbTable . ".kurzbz),')') AS name"); $this->addJoin('public.tbl_prestudent p', 'studiengang_kz'); $this->addJoin(