diff --git a/cis/private/lehre/benotungstool/lvgesamtnoteverwalten.php b/cis/private/lehre/benotungstool/lvgesamtnoteverwalten.php index 9442301cd..0d1395843 100644 --- a/cis/private/lehre/benotungstool/lvgesamtnoteverwalten.php +++ b/cis/private/lehre/benotungstool/lvgesamtnoteverwalten.php @@ -35,6 +35,9 @@ require_once('../../../../include/legesamtnote.class.php'); require_once('../../../../include/lvgesamtnote.class.php'); require_once('../../../../include/zeugnisnote.class.php'); require_once('../../../../include/pruefung.class.php'); +require_once('../../../../include/person.class.php'); +require_once('../../../../include/benutzer.class.php'); +require_once('../../../../include/mitarbeiter.class.php'); ?> @@ -115,9 +118,9 @@ function getTopOffset(){ } function saveLVNote(uid){ - note = document.getElementById(uid).note.value; - note_orig = document.getElementById(uid).note_orig.value; - if (note == note_orig && note != "") + note = document.getElementById(uid).note.value; + note_orig = document.getElementById(uid).note_orig.value; + if (note == note_orig && note != "") alert("Note unverändert!"); else if ((note < 0) || (note > 5 && note != 8 && note != 7)) { @@ -134,7 +137,7 @@ function getTopOffset(){ url += '&submit=1&student_uid='+uid+"¬e="+note+"&"+ts; anfrage.open("GET", url, true); anfrage.onreadystatechange = updateSeite; - anfrage.send(null); + anfrage.send(null); document.getElementById(uid).note_orig.value=note; } }