mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-23 01:42:17 +00:00
Die Namen englischer Staaten werden jetzt richtig sortiert
Zurück und Weiter Buttons stehen im IE jetzt auch in einer Zeile
This commit is contained in:
@@ -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")
|
||||
</tr>
|
||||
</table>
|
||||
<tr>
|
||||
<td><input type="button" value="'.$p->t('global/zurueck').'" onclick="document.location.href = \'incoming.php?method=university\'"; ><input type="button" value="'.$p->t('incoming/weiter').'" onclick="document.location.href = \'incoming.php?method=lehrveranstaltungen\'"; style="float:right"></td>
|
||||
<td><input type="button" value="'.$p->t('global/zurueck').'" onclick="document.location.href = \'incoming.php?method=university\'"; style="float:left"><input type="button" value="'.$p->t('incoming/weiter').'" onclick="document.location.href = \'incoming.php?method=lehrveranstaltungen\'"; style="float:right"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>* '.$p->t('incoming/wennVorhanden').'</td>
|
||||
@@ -1177,7 +1180,7 @@ echo' <td>'.$p->t('incoming/masterstudiengang').'</td>
|
||||
</tr>
|
||||
</table>
|
||||
<tr>
|
||||
<td><input type="button" value="'.$p->t('global/zurueck').'" onclick="document.location.href = \'incoming.php?method=profil\'"; ><input type="button" value="'.$p->t('incoming/weiter').'" onclick="document.location.href = \'incoming.php?method=austauschprogram\'"; style="float:right"></td>
|
||||
<td><input type="button" value="'.$p->t('global/zurueck').'" onclick="document.location.href = \'incoming.php?method=profil\'"; style="float:left"><input type="button" value="'.$p->t('incoming/weiter').'" onclick="document.location.href = \'incoming.php?method=austauschprogram\'"; style="float:right"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
|
||||
@@ -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();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user