From e6e52a20be16e8e197899362fbb56d9b04ae5dbf Mon Sep 17 00:00:00 2001 From: Thomas Schoefbeck Date: Sun, 19 Jan 2003 09:46:52 +0000 Subject: [PATCH] changed example that html-result fits on the screen (bug #21727) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@112659 c90b9560-bf6c-de11-be94-00142212c4b1 --- features/http-auth.xml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/features/http-auth.xml b/features/http-auth.xml index 43f80f826a..9071b4b557 100644 --- a/features/http-auth.xml +++ b/features/http-auth.xml @@ -1,5 +1,5 @@ - + HTTP authentication with PHP @@ -127,7 +127,8 @@ exit; } - if (!isset($_SERVER['PHP_AUTH_USER']) || ($_POST['SeenBefore'] == 1 && $_POST['OldAuth'] == $_SERVER['PHP_AUTH_USER'])) { + if (!isset($_SERVER['PHP_AUTH_USER']) || + ($_POST['SeenBefore'] == 1 && $_POST['OldAuth'] == $_SERVER['PHP_AUTH_USER'])) { authenticate(); } else {