From d3d521db0cbac051333c5d4eba058348c6b5e9bb Mon Sep 17 00:00:00 2001 From: Philip Olson Date: Tue, 2 Jul 2002 17:27:25 +0000 Subject: [PATCH] More fixes related to bug #18102 git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@87474 c90b9560-bf6c-de11-be94-00142212c4b1 --- features/http-auth.xml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/features/http-auth.xml b/features/http-auth.xml index 6f13d99d95..fe4d1355c5 100644 --- a/features/http-auth.xml +++ b/features/http-auth.xml @@ -1,5 +1,5 @@ - + HTTP authentication with PHP @@ -104,15 +104,15 @@ exit; } - if (!isset($_SERVER['PHP_AUTH_USER']) || ($SeenBefore == 1 && $OldAuth == $_SERVER['$PHP_AUTH_USER']))) { + if (!isset($_SERVER['PHP_AUTH_USER']) || ($SeenBefore == 1 && $OldAuth == $_SERVER['PHP_AUTH_USER']))) { authenticate(); } else { - echo "

Welcome: {$_SERVER['$PHP_AUTH_USER']}
"; - echo "Old: {$_REQUEST['$OldAuth']}"; - echo "

\n"; + echo "

Welcome: {$_SERVER['PHP_AUTH_USER']}
"; + echo "Old: {$_REQUEST['OldAuth']}"; + echo "\n"; echo "\n"; - echo "\n"; + echo "\n"; echo "\n"; echo "

\n"; }