From 72aae5a4cb3dcf79e58ec548a836fbe42be26253 Mon Sep 17 00:00:00 2001
From: Robert Sesek <rsesek@bluestatic.org>
Date: Sun, 24 Aug 2008 09:50:04 -0400
Subject: [PATCH] Expire cookies properly in
 AuthenticationDefault::clearCookies

---
 includes/auth/auth_default.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/includes/auth/auth_default.php b/includes/auth/auth_default.php
index fc06ab9..032e924 100644
--- a/includes/auth/auth_default.php
+++ b/includes/auth/auth_default.php
@@ -74,8 +74,8 @@ class AuthenticationDefault extends Authentication
 	// ###################################################################
 	function clearCookies()
 	{
-		BSFunctions::cookie(COOKIE_PREFIX . 'userid');
-		BSFunctions::cookie(COOKIE_PREFIX . 'authkey');
+		BSFunctions::cookie(COOKIE_PREFIX . 'userid', false);
+		BSFunctions::cookie(COOKIE_PREFIX . 'authkey', false);
 	}
 	
 	// ###################################################################
-- 
2.43.5