diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-08-16 17:50:38 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-08-16 17:50:38 +0000 |
commit | ecf33211ece04da0f68465cd66675d98bad03f51 (patch) | |
tree | ab298f275bd401db689ae87e9835c5e84b44b247 /phpBB | |
parent | c261dfa420a45dc76c18797ccacd68dfb5d95b0a (diff) | |
download | forums-ecf33211ece04da0f68465cd66675d98bad03f51.tar forums-ecf33211ece04da0f68465cd66675d98bad03f51.tar.gz forums-ecf33211ece04da0f68465cd66675d98bad03f51.tar.bz2 forums-ecf33211ece04da0f68465cd66675d98bad03f51.tar.xz forums-ecf33211ece04da0f68465cd66675d98bad03f51.zip |
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
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/common.php | 2 |
1 files changed, 1 insertions, 1 deletions
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); |