From f43a0785f2e2adf733b76d08d768725375d5cdc9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=96sterreicher?= Date: Thu, 5 Jun 2008 15:07:39 +0000 Subject: [PATCH] --- .../lehre/benotungstool/lvgesamtnoteverwalten.php | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) 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; } }