diff options
author | Oliver Schramm <oliver.schramm97@gmail.com> | 2014-03-13 12:09:20 +0100 |
---|---|---|
committer | Oliver Schramm <oliver.schramm97@gmail.com> | 2014-03-14 14:33:56 +0100 |
commit | 647f976c30e1e18187831556815ad18a375e59d1 (patch) | |
tree | 941dd7a889ac6f69bee344ef81d93854e715b17d /phpBB | |
parent | 03eb23cbae5281a0e75274e52d54e2b9250de99a (diff) | |
download | forums-647f976c30e1e18187831556815ad18a375e59d1.tar forums-647f976c30e1e18187831556815ad18a375e59d1.tar.gz forums-647f976c30e1e18187831556815ad18a375e59d1.tar.bz2 forums-647f976c30e1e18187831556815ad18a375e59d1.tar.xz forums-647f976c30e1e18187831556815ad18a375e59d1.zip |
[ticket/12072] Fix comment about NEW MEMBERS permission
PHPBB3-12072
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/install/schemas/schema_data.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/schemas/schema_data.sql b/phpBB/install/schemas/schema_data.sql index e1b36e64a2..b266025c86 100644 --- a/phpBB/install/schemas/schema_data.sql +++ b/phpBB/install/schemas/schema_data.sql @@ -668,7 +668,7 @@ INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, # Bots having bot access INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (6, 2, 0, 19, 0); -# NEW MEMBERS aren't allowed to PM +# NEW MEMBERS are not allowed to send private messages INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (7, 0, 0, 23, 0); # NEW MEMBERS on the queue |