diff --git a/content/fasoverlay.xul.php b/content/fasoverlay.xul.php
index 6594e69ad..64a37d27c 100644
--- a/content/fasoverlay.xul.php
+++ b/content/fasoverlay.xul.php
@@ -68,43 +68,23 @@ echo '';*/
ondragexit="nsDragAndDrop.dragExit(event,verbandtreeDDObserver)"
>
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/content/student/studentDBDML.php b/content/student/studentDBDML.php
index 705fe4538..8fcf5346e 100644
--- a/content/student/studentDBDML.php
+++ b/content/student/studentDBDML.php
@@ -1469,7 +1469,7 @@ if(!$error)
}
else
{
- $errormsg .= "Fehler bei $person_id: $buchung->errormsg\n";
+ $errormsg .= "Fehler beim Speichern: $buchung->errormsg\n";
}
}
}
diff --git a/content/student/studentkontoneudialog.js.php b/content/student/studentkontoneudialog.js.php
index 74d486b56..d0bd25427 100644
--- a/content/student/studentkontoneudialog.js.php
+++ b/content/student/studentkontoneudialog.js.php
@@ -78,9 +78,8 @@ function StudentKontoNeuInit()
}
else
{
- studiengang_kz = window.opener.document.getElementById('student-detail-menulist-studiengang_kz').value;
+ studiengang_kz = window.opener.document.getElementById('student-prestudent-menulist-studiengang_kz').value;
}
-
person_ids = paramList;
if(anzahl>1)
diff --git a/include/konto.class.php b/include/konto.class.php
index 0c3c99070..62eaa678e 100644
--- a/include/konto.class.php
+++ b/include/konto.class.php
@@ -154,31 +154,31 @@ class konto
$this->betrag = str_replace(',','.',$this->betrag);
if(!is_numeric($this->betrag))
{
- $this->errormsg = "Betrag ('".$this->betrag."') ist ungueltig bei Person '".$this->person_id."'";
+ $this->errormsg = "Betrag muss eine gueltige Zahl sein";
return false;
}
if(!is_numeric($this->studiengang_kz))
{
- $this->errormsg = "'Studiengang_kz ('".$this->studiengang_kz."') ist ungueltig bei Person '".$this->person_id."'";
+ $this->errormsg = "Die Studiengangskennzahl ist ungueltig";
return false;
}
if($this->buchungstyp_kurzbz=='')
{
- $this->errormsg = "Typ muss angegeben werden bei Person '".$this->person_id."'";
+ $this->errormsg = "Es wurde kein Buchungstyp angegeben";
return false;
}
if(!is_numeric($this->person_id))
{
- $this->errormsg = "'Person_id ('".$this->person_id."') ist ungueltig";
+ $this->errormsg = "Person_id ist ungueltig";
return false;
}
if(!is_numeric($this->mahnspanne))
{
- $this->errormsg = "Mahnspanne ('".$this->mahnspanne."') muss eine gueltige Zahl sein bei Person '".$this->person_id."'";
+ $this->errormsg = "Die Mahnspanne muss eine gueltige Zahl sein";
return false;
}
diff --git a/vilesci/stammdaten/firma_details.php b/vilesci/stammdaten/firma_details.php
index 97a4ae54b..1d5eb14d1 100644
--- a/vilesci/stammdaten/firma_details.php
+++ b/vilesci/stammdaten/firma_details.php
@@ -1,4 +1,24 @@
,
+ * Andreas Oesterreicher and
+ * Rudolf Hangl .
+ */
require_once('../config.inc.php');
require_once('../../include/functions.inc.php');
require_once('../../include/firma.class.php');