aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorOleg Pudeyev <oleg@bsdpower.com>2011-05-03 00:24:44 -0400
committerOleg Pudeyev <oleg@bsdpower.com>2011-05-03 00:24:44 -0400
commit3a70cb478c2531de31423c7f9006ef1fa746c548 (patch)
tree61742f67e5b6fd4f24f43859cdd521323484eeac /phpBB
parentaa7be58d41b5522277740535d84115f90170c79a (diff)
parent8a07e8a4f8092e0123f16e9b4acf15d7d54d4c24 (diff)
downloadforums-3a70cb478c2531de31423c7f9006ef1fa746c548.tar
forums-3a70cb478c2531de31423c7f9006ef1fa746c548.tar.gz
forums-3a70cb478c2531de31423c7f9006ef1fa746c548.tar.bz2
forums-3a70cb478c2531de31423c7f9006ef1fa746c548.tar.xz
forums-3a70cb478c2531de31423c7f9006ef1fa746c548.zip
Merge remote-tracking branch 'erikfrerejean/ticket/9954' into develop-olympus
* erikfrerejean/ticket/9954: [ticket/9954] Remove unneeded never permission
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/install/schemas/schema_data.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/schemas/schema_data.sql b/phpBB/install/schemas/schema_data.sql
index ade523a7f3..ea4157d6a3 100644
--- a/phpBB/install/schemas/schema_data.sql
+++ b/phpBB/install/schemas/schema_data.sql
@@ -565,7 +565,7 @@ INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT
# No Avatar (u_)
INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 9, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'u_%' AND auth_option NOT IN ('u_attach', 'u_chgavatar', 'u_viewonline', 'u_chggrp', 'u_chgname', 'u_ignoreflood', 'u_pm_attach', 'u_pm_emailpm', 'u_pm_flash', 'u_savedrafts', 'u_search', 'u_sendemail', 'u_sendim', 'u_masspm', 'u_masspm_group');
-INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 9, auth_option_id, 0 FROM phpbb_acl_options WHERE auth_option LIKE 'u_%' AND auth_option IN ('u_chgavatar', 'u_masspm', 'u_masspm_group');
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 9, auth_option_id, 0 FROM phpbb_acl_options WHERE auth_option LIKE 'u_%' AND auth_option IN ('u_chgavatar');
# Full Moderator (m_)
INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 10, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'm_%';