From c0e54e28c10b27218a2b6ffd2354616ed32e50a5 Mon Sep 17 00:00:00 2001 From: quix0r Date: Mon, 10 Jan 2011 08:46:24 +0000 Subject: [PATCH] Fix for bigintval() which does only take numbers --- inc/session-functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/session-functions.php b/inc/session-functions.php index 71f67ca303..ca8a38fff1 100644 --- a/inc/session-functions.php +++ b/inc/session-functions.php @@ -117,7 +117,7 @@ function destroyMemberSession () { // Destroys the admin session function destroyAdminSession ($destroy = true) { // Kill maybe existing session variables including array elements - setAdminId(''); + setAdminId(0); setAdminMd5(''); setAdminLast(''); -- 2.39.5