Updated php-5.x compatibility ($HTTP_GET_VARS).
authorshort <>
Thu, 12 May 2005 23:47:08 +0000 (23:47 +0000)
committershort <>
Thu, 12 May 2005 23:47:08 +0000 (23:47 +0000)
public_html/cgi-bin/redirect.php

index 2aacaa7..de59ff8 100644 (file)
@@ -1,4 +1,4 @@
 <?php
        header("HTTP/1.0 301 Moved Permanently");
-       header("Location: ".$HTTP_GET_VARS["url"]);
+       header("Location: ".$_REQUEST["url"]);
 ?>