diff options
author | Oleg Pudeyev <oleg@bsdpower.com> | 2011-04-24 14:29:59 -0400 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2011-04-24 14:29:59 -0400 |
commit | 8fc748770a9a80a17eb6589f80c85ee78edf7efb (patch) | |
tree | b623bdd8bb6b7f1af2f4d49cd772678ef9ef5eb9 /phpBB/includes/acp/info/acp_attachments.php | |
parent | 026358ec72d0451075ee44c6edf0d721c6bf111c (diff) | |
parent | baba66a22991e93908a8b4e7f8bfa104b3588450 (diff) | |
download | forums-8fc748770a9a80a17eb6589f80c85ee78edf7efb.tar forums-8fc748770a9a80a17eb6589f80c85ee78edf7efb.tar.gz forums-8fc748770a9a80a17eb6589f80c85ee78edf7efb.tar.bz2 forums-8fc748770a9a80a17eb6589f80c85ee78edf7efb.tar.xz forums-8fc748770a9a80a17eb6589f80c85ee78edf7efb.zip |
Merge branch 'feature/rxu/attachment-management-no-reassignment' into develop
* feature/rxu/attachment-management-no-reassignment:
[feature/attachment-management-no-reassignment] Handle privacy and some more.
[feature/attachment-management-no-reassignment] Further feature adjustments.
[feature/attachment-management-no-reassignment] Fix some more errors
[feature/attachment-management-no-reassignment] Fix minor flaws in the code.
[feature/attachment-management-no-reassignment] Attachments management
Diffstat (limited to 'phpBB/includes/acp/info/acp_attachments.php')
-rw-r--r-- | phpBB/includes/acp/info/acp_attachments.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/includes/acp/info/acp_attachments.php b/phpBB/includes/acp/info/acp_attachments.php index d5f57ece4e..4bcd7e2ea5 100644 --- a/phpBB/includes/acp/info/acp_attachments.php +++ b/phpBB/includes/acp/info/acp_attachments.php @@ -23,7 +23,8 @@ class acp_attachments_info 'attach' => array('title' => 'ACP_ATTACHMENT_SETTINGS', 'auth' => 'acl_a_attach', 'cat' => array('ACP_BOARD_CONFIGURATION', 'ACP_ATTACHMENTS')), 'extensions' => array('title' => 'ACP_MANAGE_EXTENSIONS', 'auth' => 'acl_a_attach', 'cat' => array('ACP_ATTACHMENTS')), 'ext_groups' => array('title' => 'ACP_EXTENSION_GROUPS', 'auth' => 'acl_a_attach', 'cat' => array('ACP_ATTACHMENTS')), - 'orphan' => array('title' => 'ACP_ORPHAN_ATTACHMENTS', 'auth' => 'acl_a_attach', 'cat' => array('ACP_ATTACHMENTS')) + 'orphan' => array('title' => 'ACP_ORPHAN_ATTACHMENTS', 'auth' => 'acl_a_attach', 'cat' => array('ACP_ATTACHMENTS')), + 'manage' => array('title' => 'ACP_MANAGE_ATTACHMENTS', 'auth' => 'acl_a_attach', 'cat' => array('ACP_ATTACHMENTS')), ), ); } |