diff --git a/cis/menu.html b/cis/menu.html
index 3584c5acd..232643ae6 100644
--- a/cis/menu.html
+++ b/cis/menu.html
@@ -438,10 +438,10 @@
|
WS 2006 |
-->
-
+
| |
WS 2007 |
diff --git a/content/statistik/notenspiegel.php b/content/statistik/notenspiegel.php
index 37ff3bd2a..458adab74 100644
--- a/content/statistik/notenspiegel.php
+++ b/content/statistik/notenspiegel.php
@@ -73,11 +73,15 @@ $lehrveranstaltung->load_lva($studiengang_kz, $semester, null, null, true);
$noten = new note($conn);
$noten->getAll();
$noten_arr = array();
+$noten_farben = array();
foreach ($noten->result as $row)
+{
$noten_arr[$row->note]=$row->anmerkung;
+ $noten_farben[$row->note]=$row->farbe;
+}
-echo '| Nr | Name | Matrikelnr | ';
+echo '| Nr | Name | Personenkennzeichen | ';
foreach ($lehrveranstaltung->lehrveranstaltungen as $row_lva)
{
echo "$row_lva->bezeichnung | ";
diff --git a/include/note.class.php b/include/note.class.php
index c73b0a26f..d0ba97a58 100644
--- a/include/note.class.php
+++ b/include/note.class.php
@@ -36,6 +36,7 @@ class note
var $note; // smallint
var $bezeichnung; // varchar(32)
var $anmerkung; // varchar(256)
+ var $farbe;
@@ -92,6 +93,7 @@ class note
$this->note = $row->note;
$this->bezeichnung = $row->bezeichnung;
$this->anmerkung = $row->anmerkung;
+ $this->farbe = $row->farbe;
return true;
}
else
@@ -206,6 +208,7 @@ class note
$n->note = $row->note;
$n->bezeichnung = $row->bezeichnung;
$n->anmerkung = $row->anmerkung;
+ $n->farbe = $row->farbe;
$this->result[] = $n;
}
|---|
|---|