From 499450f912b8aec0c6b89d12bde735b9946ab4a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=96sterreicher?= Date: Tue, 21 Jan 2014 15:28:51 +0000 Subject: [PATCH] =?UTF-8?q?Fehler=20beim=20=C3=84ndern=20der=20LE-Gesamtno?= =?UTF-8?q?te=20im=20Uebungstool=20behoben?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- include/legesamtnote.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/legesamtnote.class.php b/include/legesamtnote.class.php index aded4755a..e01136f83 100755 --- a/include/legesamtnote.class.php +++ b/include/legesamtnote.class.php @@ -179,13 +179,13 @@ class legesamtnote extends basis_db else { $qry = 'UPDATE campus.tbl_legesamtnote SET'. - ' student_uid='.$this->db_add_para($this->student_uid).','. + ' student_uid='.$this->db_add_param($this->student_uid).','. ' lehreinheit_id ='.$this->db_add_param($this->lehreinheit_id, FHC_INTEGER).','. ' note='.$this->db_add_param($this->note, FHC_INTEGER).','. ' benotungsdatum='.$this->db_add_param($this->benotungsdatum).','. ' updateamum='.$this->db_add_param($this->updateamum).','. ' updatevon='.$this->db_add_param($this->updatevon). - " WHERE lehreinheit_id=".$this->db_add_param($this->lehreinheit_id, FHC_INTEGER)." AND student_uid = ".$this->db_add_param(student_uid).";"; + " WHERE lehreinheit_id=".$this->db_add_param($this->lehreinheit_id, FHC_INTEGER)." AND student_uid = ".$this->db_add_param($this->student_uid).";"; } if($this->db_query($qry))