diff options
author | James Atkinson <thefinn@users.sourceforge.net> | 2001-03-07 06:53:39 +0000 |
---|---|---|
committer | James Atkinson <thefinn@users.sourceforge.net> | 2001-03-07 06:53:39 +0000 |
commit | 9ef35696d2d221a1ab58886f5db94e4988833b0b (patch) | |
tree | 6f650e1fb45438aff12cb24078683e5d7e8551b4 /phpBB/config.php | |
parent | 231c945e35ea8550bf2e1acbe79e125b9e69db61 (diff) | |
download | forums-9ef35696d2d221a1ab58886f5db94e4988833b0b.tar forums-9ef35696d2d221a1ab58886f5db94e4988833b0b.tar.gz forums-9ef35696d2d221a1ab58886f5db94e4988833b0b.tar.bz2 forums-9ef35696d2d221a1ab58886f5db94e4988833b0b.tar.xz forums-9ef35696d2d221a1ab58886f5db94e4988833b0b.zip |
Started on posting.php, got the logic done for displaying the new topic form
git-svn-id: file:///svn/phpbb/trunk@83 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/config.php')
-rw-r--r-- | phpBB/config.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/config.php b/phpBB/config.php index 43dab2004c..9acdd8fac9 100644 --- a/phpBB/config.php +++ b/phpBB/config.php @@ -40,8 +40,8 @@ define(PUBLIC, 1); define(PRIVATE, 2); // Forum posting levels -define(ANONALLOWED, 1); -define(REGONLY, 2); +define(ANONALLOWED, 2); +define(REGONLY, 1); define(MODONLY, 3); // Topic state |