diff options
Diffstat (limited to 'phpBB/includes/constants.php')
-rw-r--r-- | phpBB/includes/constants.php | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/phpBB/includes/constants.php b/phpBB/includes/constants.php index 9d08d10e62..5f82d4f2a8 100644 --- a/phpBB/includes/constants.php +++ b/phpBB/includes/constants.php @@ -87,37 +87,39 @@ define(AUTH_MOD, 3); define(AUTH_ADMIN, 5); define(AUTH_VIEW, 1); + define(AUTH_READ, 2); define(AUTH_POST, 3); define(AUTH_REPLY, 4); define(AUTH_EDIT, 5); define(AUTH_DELETE, 6); -define(AUTH_VOTECREATE, 7); -define(AUTH_VOTE, 8); -define(AUTH_ATTACH, 9); -define(AUTH_LIST_ALL, 10); + +define(AUTH_ANNOUNCE, 7); +define(AUTH_STICKY, 8); +define(AUTH_VOTECREATE, 9); +define(AUTH_VOTE, 10); +define(AUTH_ATTACH, 11); + +define(AUTH_LIST_ALL, 20); // Table names +define('AUTH_ACCESS_TABLE', $table_prefix.'auth_access'); +define('AUTH_FORUMS_TABLE', $table_prefix.'auth_forums'); define('BANLIST_TABLE', $table_prefix.'banlist'); define('CATEGORIES_TABLE', $table_prefix.'categories'); define('CONFIG_TABLE', $table_prefix.'config'); 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('GROUPS_TABLE', $table_prefix.'groups'); 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('GROUPS_TABLE', $table_prefix.'groups'); define('USER_GROUP_TABLE', $table_prefix.'user_group'); +define('USERS_TABLE', $table_prefix.'users'); define('WORDS_TABLE', $table_prefix.'words'); -define('AUTH_ACCESS_TABLE', $table_prefix.'auth_access'); -define('AUTH_FORUMS_TABLE', $table_prefix.'auth_forums'); ?>
\ No newline at end of file |