aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2001-05-02 22:31:56 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2001-05-02 22:31:56 +0000
commit379d70fab83f28cd0280c82c008701cf045b3086 (patch)
tree3ac68f0d8925b4a479b6b9f1d519a1b321c8ea48
parentdc5fce4710566c4a6aa191cadc87bd25470144d9 (diff)
downloadforums-379d70fab83f28cd0280c82c008701cf045b3086.tar
forums-379d70fab83f28cd0280c82c008701cf045b3086.tar.gz
forums-379d70fab83f28cd0280c82c008701cf045b3086.tar.bz2
forums-379d70fab83f28cd0280c82c008701cf045b3086.tar.xz
forums-379d70fab83f28cd0280c82c008701cf045b3086.zip
An extra TABLES constant for possible multiple autologin keys
git-svn-id: file:///svn/phpbb/trunk@233 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r--phpBB/includes/constants.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/phpBB/includes/constants.php b/phpBB/includes/constants.php
index 1c5b0fb1f6..ccb5fd62b6 100644
--- a/phpBB/includes/constants.php
+++ b/phpBB/includes/constants.php
@@ -90,16 +90,15 @@ define('DISALLOW_TABLE', $table_prefix.'disallow');
define('FORUM_ACCESS_TABLE', $table_prefix.'forum_access');
define('FORUM_MODS_TABLE', $table_prefix.'forum_mods');
define('FORUMS_TABLE', $table_prefix.'forums');
-define('HEADERMETAFOOTER_TABLE', $table_prefix.'headermetafooter');
define('POSTS_TABLE', $table_prefix.'posts');
define('POSTS_TEXT_TABLE', $table_prefix.'posts_text');
define('PRIV_MSGS_TABLE', $table_prefix.'priv_msgs');
define('RANKS_TABLE', $table_prefix.'ranks');
define('SESSIONS_TABLE', $table_prefix.'session');
+define('SESSIONS_KEY_TABLE', $table_prefix.'session_keys');
define('THEMES_TABLE', $table_prefix.'themes');
define('TOPICS_TABLE', $table_prefix.'topics');
define('USERS_TABLE', $table_prefix.'users');
-define('WHOSONLINE_TABLE', $table_prefix.'whosonline');
define('WORDS_TABLE', $table_prefix.'words');
-?>
+?> \ No newline at end of file