summaryrefslogtreecommitdiff
path: root/www-ssl
diff options
context:
space:
mode:
authorichdasich <ichdasich@29ba0400-6e00-0410-a75a-ca02368028f8>2008-12-13 23:10:00 +0000
committerichdasich <ichdasich@29ba0400-6e00-0410-a75a-ca02368028f8>2008-12-13 23:10:00 +0000
commitf22f5194e2ae9712dc34ebf8ec88ca3eb6816a15 (patch)
treee83b50847fc58b40f6f1a27c24d010aa13c3305d /www-ssl
parent87816b347f5ad1a337c25a347d82b56b74b048e6 (diff)
minor fixes for php5 compability
git-svn-id: svn://svn.cccv.de/engel-system@318 29ba0400-6e00-0410-a75a-ca02368028f8
Diffstat (limited to 'www-ssl')
-rwxr-xr-xwww-ssl/admin/EngelType.php4
-rwxr-xr-xwww-ssl/admin/room.php6
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&auml;ndern:\n";
- echo "Hier kannst du eintragen, welche und wieviele Engel f&uuml;r den Raum zur Verfügung stehen m&uuml;ssen.";
+ echo "Hier kannst du eintragen, welche und wieviele Engel f&uuml;r den Raum zur Verf?gung stehen m&uuml;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)