From b21bdf5a10ab23607705967ad93e54dca132d38b Mon Sep 17 00:00:00 2001 From: Derek Ford Date: Sat, 27 Aug 2005 23:48:12 +0000 Subject: [PATCH] Corrected mispelling of 'analyze' git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@194479 c90b9560-bf6c-de11-be94-00142212c4b1 --- features/http-auth.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/features/http-auth.xml b/features/http-auth.xml index 88c93e8aa8..721ed88e97 100644 --- a/features/http-auth.xml +++ b/features/http-auth.xml @@ -1,5 +1,5 @@ - + HTTP authentication with PHP @@ -81,7 +81,7 @@ if (!isset($_SERVER['PHP_AUTH_DIGEST'])) { die('Text to send if user hits Cancel button'); } -// analise the PHP_AUTH_DIGEST variable +// analyze the PHP_AUTH_DIGEST variable preg_match('/username="(?P.*)",\s*realm="(?P.*)",\s*nonce="(?P.*)",\s*uri="(?P.*)",\s*response="(?P.*)",\s*opaque="(?P.*)",\s*qop=(?P.*),\s*nc=(?P.*),\s*cnonce="(?P.*)"/', $_SERVER['PHP_AUTH_DIGEST'], $digest); if (!isset($users[$digest['username']]))