openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit eb799231a4bf3d1b64076bd378372c83509b2980
parent 9d9da55ba1ede9b082e3c741d3169bff3f45d249
Author: dankert <devnull@localhost>
Date:   Thu, 20 May 2010 21:33:40 +0200

Unterstützung von HTTP_GET_VARS und HTTP_POST_VARS entfernt, da seit PHP 4.1 nicht mehr notwendig.

Diffstat:
functions/request.inc.php | 6++----
1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/functions/request.inc.php b/functions/request.inc.php @@ -37,13 +37,11 @@ // // --------------------------------------------------------------------------- - - -$REQ = array_merge($HTTP_GET_VARS,$HTTP_POST_VARS,$_GET,$_POST); +$REQ = array_merge($_GET,$_POST); // Zur Sicherheit: // Falls REGISTER_GLOBALS aktiviert ist, dann alle REQUEST-Variablen aus dem -// globalen Gültigkeitsraum entfernen. +// globalen G�ltigkeitsraum entfernen. if ( ini_get('register_globals') ) { foreach( $REQ as $reqVar=>$reqValue )