From 2ececb33d9da77f08fc1fcc2c928fe51cad3f593 Mon Sep 17 00:00:00 2001 From: Cris Date: Mon, 7 Sep 2020 11:02:08 +0200 Subject: [PATCH] Removed right white space from matrikelnummer The white space was causing incorrect display when right aligning the text. Signed-off-by: Cris --- content/zutrittskarte.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/zutrittskarte.php b/content/zutrittskarte.php index 70a0f91b0..c936400da 100644 --- a/content/zutrittskarte.php +++ b/content/zutrittskarte.php @@ -267,7 +267,7 @@ foreach ($uid_arr as $uid) 'titelpost' => $bn->titelpost, 'studiengang' => $studiengang->kurzbzlang, 'gebdatum' => $datum_obj->formatDatum($bn->gebdatum, 'd.m.Y'), - 'matrikelnummer' => $student->matrikelnr, + 'matrikelnummer' => rtrim($student->matrikelnr), 'matr_nr' => $person->matr_nr, 'ausstellungsdatum' => date('M.Y'), 'gueltigbis' => $datum_obj->formatDatum($gueltigbis, 'd.m.Y')