diff options
-rwxr-xr-x | includes/funktion_xml_schudle.php | 4 | ||||
-rwxr-xr-x | www-ssl/admin/EngelType.php | 4 | ||||
-rwxr-xr-x | www-ssl/admin/room.php | 6 |
3 files changed, 7 insertions, 7 deletions
diff --git a/includes/funktion_xml_schudle.php b/includes/funktion_xml_schudle.php index 7e40f260..8103ea10 100755 --- a/includes/funktion_xml_schudle.php +++ b/includes/funktion_xml_schudle.php @@ -1,9 +1,9 @@ <?PHP /*############################################################################################## - S c h e d u l e + s c h e d u l e ##############################################################################################*/ -echo "\n\n<h1>Schudle:</h1>\n"; +echo "\n\n<h1>Schedule:</h1>\n"; function SaveSchedule() diff --git a/www-ssl/admin/EngelType.php b/www-ssl/admin/EngelType.php index af974428..29df5ad7 100755 --- a/www-ssl/admin/EngelType.php +++ b/www-ssl/admin/EngelType.php @@ -101,7 +101,7 @@ case 'new': break; case 'newsave': - $vars = $HTTP_GET_VARS; + $vars = $_GET; $count = count($vars) - 1; $vars = array_splice($vars, 0, $count); $Keys=""; @@ -158,7 +158,7 @@ case 'change': break; case 'changesave': - $vars = $HTTP_GET_VARS; + $vars = $_GET; $count = count($vars) - 2; $vars = array_splice($vars, 0, $count); $keys=""; diff --git a/www-ssl/admin/room.php b/www-ssl/admin/room.php index a297ba91..50171986 100755 --- a/www-ssl/admin/room.php +++ b/www-ssl/admin/room.php @@ -82,7 +82,7 @@ case 'new': break; case 'newsave': - $vars = $HTTP_GET_VARS; + $vars = $_GET; $count = count($vars) - 1; $vars = array_splice($vars, 0, $count); $Keys = ""; @@ -107,7 +107,7 @@ case 'change': if( mysql_num_rows( $ERG)>0) { echo "Raum abändern:\n"; - echo "Hier kannst du eintragen, welche und wieviele Engel für den Raum zur Verfügung stehen müssen."; + echo "Hier kannst du eintragen, welche und wieviele Engel für den Raum zur Verf?gung stehen müssen."; echo "<form action=\"./room.php\" method=\"GET\">\n"; echo "<table>\n"; @@ -154,7 +154,7 @@ case 'change': case 'changesave': $sql=""; - $vars = $HTTP_GET_VARS; + $vars = $_GET; $count = count($vars) - 2; $vars = array_splice($vars, 0, $count); foreach($vars as $key => $value) |