diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-02-11 16:24:58 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-02-11 16:24:58 +0000 |
commit | 28a01da9a413fae0b73c381eba03cd885407f052 (patch) | |
tree | fefaf8c4848ef5f5af84bc5bd593a88ab09b8de7 | |
parent | 02e86186fbb1a44d9e55ae5f20a22026b63d961f (diff) | |
download | forums-28a01da9a413fae0b73c381eba03cd885407f052.tar forums-28a01da9a413fae0b73c381eba03cd885407f052.tar.gz forums-28a01da9a413fae0b73c381eba03cd885407f052.tar.bz2 forums-28a01da9a413fae0b73c381eba03cd885407f052.tar.xz forums-28a01da9a413fae0b73c381eba03cd885407f052.zip |
Add acl option for denying user/group post count incrementing in a given forum
git-svn-id: file:///svn/phpbb/trunk@3467 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/install/schemas/mysql_basic.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/install/schemas/mysql_basic.sql b/phpBB/install/schemas/mysql_basic.sql index 327bb1c54f..21c1ae637d 100644 --- a/phpBB/install/schemas/mysql_basic.sql +++ b/phpBB/install/schemas/mysql_basic.sql @@ -117,6 +117,7 @@ INSERT INTO phpbb_auth_options (auth_value, is_local) VALUES ('f_rate', 1); INSERT INTO phpbb_auth_options (auth_value, is_local) VALUES ('f_print', 1); INSERT INTO phpbb_auth_options (auth_value, is_local) VALUES ('f_ignoreflood', 1); INSERT INTO phpbb_auth_options (auth_value, is_local) VALUES ('f_ignorequeue', 1); +INSERT INTO phpbb_auth_options (auth_value, is_local) VALUES ('f_postcount', 1); INSERT INTO phpbb_auth_options (auth_value, is_local, is_global) VALUES ('m_', 1, 1); INSERT INTO phpbb_auth_options (auth_value, is_local, is_global) VALUES ('m_edit', 1, 1); |