diff options
| author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-04-03 11:37:17 +0000 |
|---|---|---|
| committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-04-03 11:37:17 +0000 |
| commit | 7018d81079b1dcc1b119745aea11e25d7d635119 (patch) | |
| tree | b91bf6ec952f359b75c9120f590e1cc1c2a757b3 | |
| parent | e3bac84877a104467297e3ba791c8cb5c26eb71c (diff) | |
| download | forums-7018d81079b1dcc1b119745aea11e25d7d635119.tar forums-7018d81079b1dcc1b119745aea11e25d7d635119.tar.gz forums-7018d81079b1dcc1b119745aea11e25d7d635119.tar.bz2 forums-7018d81079b1dcc1b119745aea11e25d7d635119.tar.xz forums-7018d81079b1dcc1b119745aea11e25d7d635119.zip | |
Add m_info
git-svn-id: file:///svn/phpbb/trunk@3788 89ea8834-ac86-4346-8a33-228a782c2dd0
| -rw-r--r-- | phpBB/install/schemas/mysql_basic.sql | 1 | ||||
| -rw-r--r-- | phpBB/language/en/lang_admin.php | 3 |
2 files changed, 3 insertions, 1 deletions
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', |
