diff --git a/cis/public/incoming/incoming.php b/cis/public/incoming/incoming.php
index 4d3c2443c..f6dfbb648 100644
--- a/cis/public/incoming/incoming.php
+++ b/cis/public/incoming/incoming.php
@@ -66,8 +66,11 @@ if(isset($_GET['method']))
$zugangscode = $_SESSION['incoming/user'];
$nation = new nation();
-$nation->getAll($ohnesperre = true);
-
+if($sprache == "German")
+ $nation->getAll($ohnesperre = true);
+else if($sprache == "English")
+ $nation->getAll($ohnesperre = true, $orderEnglish= true);
+
$mobility = new mobilitaetsprogramm();
$mobility->getAll(true);
@@ -176,7 +179,7 @@ if($method =="austauschprogram")
- |
+ |
| * '.$p->t('incoming/wennVorhanden').' |
@@ -1177,7 +1180,7 @@ echo' '.$p->t('incoming/masterstudiengang').' |
- |
+ |
diff --git a/cis/public/incoming/registration.php b/cis/public/incoming/registration.php
index df6419a9a..c3f0181e3 100644
--- a/cis/public/incoming/registration.php
+++ b/cis/public/incoming/registration.php
@@ -34,11 +34,15 @@ require_once '../../../include/mail.class.php';
if(isset($_GET['lang']))
setSprache($_GET['lang']);
-$nation = new nation();
-$nation->getAll($ohnesperre = true);
-
$sprache = getSprache();
$p=new phrasen($sprache);
+
+$nation = new nation();
+if($sprache == "German")
+ $nation->getAll($ohnesperre = true);
+else if($sprache == "English")
+ $nation->getAll($ohnesperre = true, $orderEnglish= true);
+
$date = new datum();