Bugfix Incoming Plattform

This commit is contained in:
kindlm
2016-11-04 13:37:51 +01:00
parent 8fe63a9579
commit e32fb99552
3 changed files with 11 additions and 4 deletions
+6 -1
View File
@@ -944,7 +944,12 @@ else if ($method == "university")
}
$preincoming->program_name = $_REQUEST['name_of_program'];
$preincoming->jahre = $_REQUEST['jahre'];
//Pruefen, ob Jahre studiert eine ganze Zahl ist oder leer
if(ctype_digit($_REQUEST['jahre']) || $_REQUEST['jahre'] == '')
$preincoming->jahre = $_REQUEST['jahre'];
else
echo '<span class="error">'.$p->t('incoming/jahreStudiertMussGanzeZahlSein').'</span><br>';
if(isset($_REQUEST['bachelor']))
$preincoming->bachelor = true;
else
+2 -1
View File
@@ -132,5 +132,6 @@ $this->phrasen['incoming/tabelleSortierinformation']='Sie können die Spalten du
$this->phrasen['incoming/waehlenSieAusDenOptionen']='Bitte wählen Sie die gewünschen Optionen aus dem DropDown und klicken Sie auf "Filter"';
$this->phrasen['incoming/lvInfo']='LV-Info';
$this->phrasen['incoming/erfolgreichAbgeschickt']='Ihre Bewerbung wurde erfolgreich abgeschickt. Die zuständige Assistenz wird sich in Kürze mit Ihnen in Verbindung setzen';
$this->phrasen['incoming/fehlerBeimSenden']='An error occured while sending the application. Please contact <a href="mailto:'.MAIL_INTERNATIONAL.'">'.MAIL_INTERNATIONAL.'</a>';
$this->phrasen['incoming/fehlerBeimSenden']='Fehler beim senden der Bewerbung. Bitte kontaktieren Sie <a href="mailto:'.MAIL_INTERNATIONAL.'">'.MAIL_INTERNATIONAL.'</a>';
$this->phrasen['incoming/jahreStudiertMussGanzeZahlSein']='Das Feld "Jahre studiert" muss eine ganze Zahl sein</a>';
?>
+3 -2
View File
@@ -23,7 +23,7 @@ $this->phrasen['incoming/personimernstfall']='Person to contact in Case of Emerg
$this->phrasen['incoming/bachelorstudiengang']='Bachelor´s Degree Program';
$this->phrasen['incoming/masterstudiengang']='Master\'s Degree Program';
$this->phrasen['incoming/studienrichtung']='Name of Study Program';
$this->phrasen['incoming/jahrestudiert']='Years completetd when starting at UAS TW';
$this->phrasen['incoming/jahrestudiert']='Years completed when starting at UAS TW';
$this->phrasen['incoming/uploadLearningAgreement']= 'Upload Learning Agreement';
$this->phrasen['incoming/uploadCv']='Upload CV';
$this->phrasen['incoming/dokument']='Document';
@@ -133,5 +133,6 @@ $this->phrasen['incoming/tabelleSortierinformation']='You may sort the columns b
$this->phrasen['incoming/waehlenSieAusDenOptionen']='Please choose your options from the DropDown-Fields and click "Filter"';
$this->phrasen['incoming/lvInfo']='Course-Info';
$this->phrasen['incoming/erfolgreichAbgeschickt']='Admission sent successfully. The administrative assistant responsible will contact you soon';
$this->phrasen['incoming/fehlerBeimSenden']='Fehler beim senden der Bewerbung. Bitte kontaktieren Sie <a href="mailto:'.MAIL_INTERNATIONAL.'">'.MAIL_INTERNATIONAL.'</a>';
$this->phrasen['incoming/fehlerBeimSenden']='An error occured while sending the application. Please contact <a href="mailto:'.MAIL_INTERNATIONAL.'">'.MAIL_INTERNATIONAL.'</a>';
$this->phrasen['incoming/jahreStudiertMussGanzeZahlSein']='"Years completed" must be a positive integer</a>';
?>