From ba69ce1d7e06af0773a7b963486cb58dca776bee Mon Sep 17 00:00:00 2001 From: Sam Minnee Date: Sun, 15 Nov 2009 21:41:13 +0000 Subject: [PATCH] BUGFIX: Don't enable site-wide protection by default git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@91609 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- security/BasicAuth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/security/BasicAuth.php b/security/BasicAuth.php index 6ae3ed53e..00a190a58 100755 --- a/security/BasicAuth.php +++ b/security/BasicAuth.php @@ -15,7 +15,7 @@ class BasicAuth extends Object { /** * Flag set by {@link self::protect_entire_site()} */ - private static $entire_site_protected = true; + private static $entire_site_protected = false; /** * Require basic authentication. Will request a username and password if none is given.