From ecf33211ece04da0f68465cd66675d98bad03f51 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Fri, 16 Aug 2002 17:50:38 +0000 Subject: [PATCH] Anonymous takes user_id = 0 ... hopefully this will not cause problems on the various supported DB's ... git-svn-id: file:///svn/phpbb/trunk@2865 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/common.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/common.php b/phpBB/common.php index c1f019c34d..6988232262 100644 --- a/phpBB/common.php +++ b/phpBB/common.php @@ -38,7 +38,7 @@ if ( !defined('PHPBB_INSTALLED') ) // // Define some constants/variables // -define('ANONYMOUS', -1); +define('ANONYMOUS', 0); // User related define('USER_ACTIVATION_NONE', 0);