diff options
author | ichdasich <ichdasich@29ba0400-6e00-0410-a75a-ca02368028f8> | 2008-12-13 23:10:00 +0000 |
---|---|---|
committer | ichdasich <ichdasich@29ba0400-6e00-0410-a75a-ca02368028f8> | 2008-12-13 23:10:00 +0000 |
commit | f22f5194e2ae9712dc34ebf8ec88ca3eb6816a15 (patch) | |
tree | e83b50847fc58b40f6f1a27c24d010aa13c3305d | |
parent | 87816b347f5ad1a337c25a347d82b56b74b048e6 (diff) |
minor fixes for php5 compability
git-svn-id: svn://svn.cccv.de/engel-system@318 29ba0400-6e00-0410-a75a-ca02368028f8
-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) |