diff options
| author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-01-31 15:39:54 +0000 |
|---|---|---|
| committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-01-31 15:39:54 +0000 |
| commit | 96e419d36efcc5415f4edc7df302b4847034e518 (patch) | |
| tree | f5efa8bc17347d2b5656f471616684366c2728da /phpBB/common.php | |
| parent | 4eb55d668905ed29298735c5cd84b9b410fe96e9 (diff) | |
| download | forums-96e419d36efcc5415f4edc7df302b4847034e518.tar forums-96e419d36efcc5415f4edc7df302b4847034e518.tar.gz forums-96e419d36efcc5415f4edc7df302b4847034e518.tar.bz2 forums-96e419d36efcc5415f4edc7df302b4847034e518.tar.xz forums-96e419d36efcc5415f4edc7df302b4847034e518.zip | |
Add new group type, GROUP_FREE for "freely open"
git-svn-id: file:///svn/phpbb/trunk@3443 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/common.php')
| -rw-r--r-- | phpBB/common.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/common.php b/phpBB/common.php index 4d57a54004..7a6b55c11a 100644 --- a/phpBB/common.php +++ b/phpBB/common.php @@ -74,6 +74,7 @@ define('GROUP_OPEN', 0); define('GROUP_CLOSED', 1); define('GROUP_HIDDEN', 2); define('GROUP_SPECIAL', 3); +define('GROUP_FREE', 4); // Forum/Topic states define('ITEM_UNLOCKED', 0); @@ -106,6 +107,7 @@ define('DISALLOW_TABLE', $table_prefix.'disallow'); // define('FORUMS_TABLE', $table_prefix.'forums'); define('FORUMS_WATCH_TABLE', $table_prefix.'forums_watch'); define('GROUPS_TABLE', $table_prefix.'groups'); +define('GROUPS_MODERATOR_TABLE', $table_prefix.'groups_moderator'); define('ICONS_TABLE', $table_prefix.'icons'); define('LASTREAD_TABLE', $table_prefix.'lastread'); define('LOG_ADMIN_TABLE', $table_prefix.'log_admin'); |
