aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/common.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2005-07-04 16:54:34 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2005-07-04 16:54:34 +0000
commitbe7442570bee2c43dd70d439bae73bac740b0ea1 (patch)
tree47198da451e136cda71af256de31d9e44367f2db /phpBB/common.php
parent0eae8040e88291a621b8918384a1cb4bcbaf56d7 (diff)
downloadforums-be7442570bee2c43dd70d439bae73bac740b0ea1.tar
forums-be7442570bee2c43dd70d439bae73bac740b0ea1.tar.gz
forums-be7442570bee2c43dd70d439bae73bac740b0ea1.tar.bz2
forums-be7442570bee2c43dd70d439bae73bac740b0ea1.tar.xz
forums-be7442570bee2c43dd70d439bae73bac740b0ea1.zip
Session key implementation.
git-svn-id: file:///svn/phpbb/trunk@5175 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/common.php')
-rw-r--r--phpBB/common.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/phpBB/common.php b/phpBB/common.php
index b845460e16..1eaf062106 100644
--- a/phpBB/common.php
+++ b/phpBB/common.php
@@ -8,9 +8,6 @@
*
*/
-/**
-*/
-
// Remove the following line to enable this software, be sure you note what it
// says before continuing
die('This software is unsupported in any and all respects. By removing this notice (found in common.php) you are noting your acceptance of this. Do not ask support questions of any kind for this release at either area51.phpbb.com or www.phpbb.com. Support for this version will appear when the beta cycle begins');
@@ -93,6 +90,8 @@ define('USER_NORMAL', 0);
define('USER_INACTIVE', 1);
define('USER_IGNORE', 2);
define('USER_FOUNDER', 3);
+//define('USER_BOT', 2);
+//define('USER_GUEST', 4);
// ACL
define('ACL_NO', 0);
@@ -224,6 +223,7 @@ define('SEARCH_TABLE', $table_prefix.'search_results');
define('SEARCH_WORD_TABLE', $table_prefix.'search_wordlist');
define('SEARCH_MATCH_TABLE', $table_prefix.'search_wordmatch');
define('SESSIONS_TABLE', $table_prefix.'sessions');
+define('SESSIONS_KEYS_TABLE', $table_prefix.'sessions_keys');
define('SITELIST_TABLE', $table_prefix.'sitelist');
define('SMILIES_TABLE', $table_prefix.'smilies');
define('STYLES_TABLE', $table_prefix.'styles');
@@ -236,6 +236,7 @@ define('TOPICS_TRACK_TABLE', $table_prefix.'topics_marking');
define('TOPICS_WATCH_TABLE', $table_prefix.'topics_watch');
define('USER_GROUP_TABLE', $table_prefix.'user_group');
define('USERS_TABLE', $table_prefix.'users');
+define('USERS_TABLE', $table_prefix.'users_passwd');
define('USERS_NOTES_TABLE', $table_prefix.'users_notes');
define('WORDS_TABLE', $table_prefix.'words');
define('POLL_OPTIONS_TABLE', $table_prefix.'poll_results');