diff options
Diffstat (limited to 'www-ssl')
-rwxr-xr-x | www-ssl/admin/EngelType.php | 4 | ||||
-rwxr-xr-x | www-ssl/admin/room.php | 6 |
2 files changed, 5 insertions, 5 deletions
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) |