From 38123a353a0bc2ec2c9fea16f65d908b9a81c849 Mon Sep 17 00:00:00 2001 From: Karl Burkhart Date: Mon, 23 May 2011 12:41:11 +0000 Subject: [PATCH] --- cis/public/incoming/akteupload.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/cis/public/incoming/akteupload.php b/cis/public/incoming/akteupload.php index e1f3f80b0..aaf573999 100644 --- a/cis/public/incoming/akteupload.php +++ b/cis/public/incoming/akteupload.php @@ -29,9 +29,16 @@ require_once('../../../include/benutzerberechtigung.class.php'); require_once('../../../include/akte.class.php'); require_once('../../../include/dokument.class.php'); require_once('../../../include/mail.class.php'); +require_once('../../../include/phrasen.class.php'); header("Content-Type: text/html; charset=utf-8"); +if(isset($_GET['lang'])) + setSprache($_GET['lang']); +$sprache = getSprache(); +$p=new phrasen($sprache); + + $PHP_SELF = $_SERVER['PHP_SELF']; echo ""; @@ -102,7 +109,7 @@ if(isset($_POST['submitbild'])) if(!$mail->send()) $msg= 'Fehler beim Senden des Mails
'; else - $msg= $p->t('global/emailgesendetan')." $email!
"; + $msg= $p->t('global/emailgesendetan'); } } }