diff --git a/phpBB/install/schemas/mysql_basic.sql b/phpBB/install/schemas/mysql_basic.sql index 5a8f2704c8..155d0a8b46 100644 --- a/phpBB/install/schemas/mysql_basic.sql +++ b/phpBB/install/schemas/mysql_basic.sql @@ -139,6 +139,7 @@ INSERT INTO phpbb_auth_options (auth_value, is_local, is_global) VALUES ('m_appr INSERT INTO phpbb_auth_options (auth_value, is_local, is_global) VALUES ('m_unrate', 1, 1); INSERT INTO phpbb_auth_options (auth_value, is_local, is_global) VALUES ('m_auth', 1, 1); INSERT INTO phpbb_auth_options (auth_value, is_local, is_global) VALUES ('m_ip', 1, 1); +INSERT INTO phpbb_auth_options (auth_value, is_local, is_global) VALUES ('m_info', 1, 1); INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('a_', 1); INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('a_server', 1); diff --git a/phpBB/language/en/lang_admin.php b/phpBB/language/en/lang_admin.php index bba1320063..cbeb7a1a6e 100644 --- a/phpBB/language/en/lang_admin.php +++ b/phpBB/language/en/lang_admin.php @@ -289,7 +289,8 @@ $lang = array_merge($lang, array( 'acl_m_approve' => 'Can approve posts', 'acl_m_unrate' => 'Can un-rate posts', 'acl_m_auth' => 'Can set permissions', - 'acl_m_ip' => 'Can view IP\'s', + 'acl_m_ip' => 'Can view IP\'s', + 'acl_m_info' => 'Can alter forum info', 'acl_f_list' => 'Can see forum', 'acl_f_read' => 'Can read forum',