From 70b5cd8a3729b70a6a3c6aec302eda07f0db7eaa Mon Sep 17 00:00:00 2001 From: oesi Date: Tue, 20 Oct 2015 11:09:16 +0200 Subject: [PATCH] Gruppen werden in der Notenliste als Text formatiert damit Gruppen mit E im Namen nicht als Exponentialzahl dargestellt werden --- cis/private/lehre/notenliste.xls.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cis/private/lehre/notenliste.xls.php b/cis/private/lehre/notenliste.xls.php index 76d8cfe2a..14d72eccb 100644 --- a/cis/private/lehre/notenliste.xls.php +++ b/cis/private/lehre/notenliste.xls.php @@ -246,7 +246,7 @@ else $note=''; $worksheet->write($lines,1,$elem->nachname.$inc); $worksheet->write($lines,2,$elem->vorname); - $worksheet->write($lines,3,$elem->semester.$elem->verband.$elem->gruppe); + $worksheet->write($lines,3,'="'.$elem->semester.$elem->verband.$elem->gruppe.'"'); $worksheet->write($lines,4,'="'.trim($elem->matrikelnr).'"',$format_highlight); $worksheet->write($lines,5,$note,$format_highlight); $i++;