mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
Add m_info
git-svn-id: file:///svn/phpbb/trunk@3788 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
e3bac84877
commit
7018d81079
2 changed files with 3 additions and 1 deletions
|
@ -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_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_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_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_', 1);
|
||||||
INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('a_server', 1);
|
INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('a_server', 1);
|
||||||
|
|
|
@ -289,7 +289,8 @@ $lang = array_merge($lang, array(
|
||||||
'acl_m_approve' => 'Can approve posts',
|
'acl_m_approve' => 'Can approve posts',
|
||||||
'acl_m_unrate' => 'Can un-rate posts',
|
'acl_m_unrate' => 'Can un-rate posts',
|
||||||
'acl_m_auth' => 'Can set permissions',
|
'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_list' => 'Can see forum',
|
||||||
'acl_f_read' => 'Can read forum',
|
'acl_f_read' => 'Can read forum',
|
||||||
|
|
Loading…
Add table
Reference in a new issue