diff options
author | Graham Eames <grahamje@users.sourceforge.net> | 2006-01-08 18:30:00 +0000 |
---|---|---|
committer | Graham Eames <grahamje@users.sourceforge.net> | 2006-01-08 18:30:00 +0000 |
commit | 61e827879746fe4c654deeb1369c79dabc4ef6e7 (patch) | |
tree | bdd897f87c5e7169f80fb7ed661b090bb22bbeba /phpBB/includes | |
parent | ea96595e4f1ecf8fdbba39e173ffcd002d7786c6 (diff) | |
download | forums-61e827879746fe4c654deeb1369c79dabc4ef6e7.tar forums-61e827879746fe4c654deeb1369c79dabc4ef6e7.tar.gz forums-61e827879746fe4c654deeb1369c79dabc4ef6e7.tar.bz2 forums-61e827879746fe4c654deeb1369c79dabc4ef6e7.tar.xz forums-61e827879746fe4c654deeb1369c79dabc4ef6e7.zip |
Auth changes for these modules as per the schema from before
git-svn-id: file:///svn/phpbb/trunk@5438 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/mcp/mcp_main.php | 8 | ||||
-rwxr-xr-x | phpBB/includes/mcp/mcp_notes.php | 4 | ||||
-rwxr-xr-x | phpBB/includes/mcp/mcp_warn.php | 8 |
3 files changed, 10 insertions, 10 deletions
diff --git a/phpBB/includes/mcp/mcp_main.php b/phpBB/includes/mcp/mcp_main.php index cbe8227bae..ef92a41399 100644 --- a/phpBB/includes/mcp/mcp_main.php +++ b/phpBB/includes/mcp/mcp_main.php @@ -962,10 +962,10 @@ class mcp_main_info 'title' => 'MCP_MAIN', 'version' => '1.0.0', 'modes' => array( - 'front' => array('title' => 'MCP_MAIN_FRONT', 'auth' => 'acl_m_'), - 'forum_view' => array('title' => 'MCP_MAIN_FORUM_VIEW', 'auth' => 'acl_m_'), - 'topic_view' => array('title' => 'MCP_MAIN_TOPIC_VIEW', 'auth' => 'acl_m_'), - 'post_details' => array('title' => 'MCP_MAIN_POST_DETAILS', 'auth' => 'acl_m_'), + 'front' => array('title' => 'MCP_MAIN_FRONT', 'auth' => ''), + 'forum_view' => array('title' => 'MCP_MAIN_FORUM_VIEW', 'auth' => 'acl_m_,$id'), + 'topic_view' => array('title' => 'MCP_MAIN_TOPIC_VIEW', 'auth' => 'acl_m_,$id'), + 'post_details' => array('title' => 'MCP_MAIN_POST_DETAILS', 'auth' => 'acl_m_,$id'), ), ); } diff --git a/phpBB/includes/mcp/mcp_notes.php b/phpBB/includes/mcp/mcp_notes.php index 5d73941f60..0be85c67ee 100755 --- a/phpBB/includes/mcp/mcp_notes.php +++ b/phpBB/includes/mcp/mcp_notes.php @@ -66,8 +66,8 @@ class mcp_notes_info 'title' => 'MCP_NOTES', 'version' => '1.0.0', 'modes' => array( - 'front' => array('title' => 'MCP_NOTES_FRONT', 'auth' => 'acl_m_'), - 'user_notes' => array('title' => 'MCP_NOTES_USER', 'auth' => 'acl_m_'), + 'front' => array('title' => 'MCP_NOTES_FRONT', 'auth' => ''), + 'user_notes' => array('title' => 'MCP_NOTES_USER', 'auth' => ''), ), ); } diff --git a/phpBB/includes/mcp/mcp_warn.php b/phpBB/includes/mcp/mcp_warn.php index ccb58f33a8..b9d33990ec 100755 --- a/phpBB/includes/mcp/mcp_warn.php +++ b/phpBB/includes/mcp/mcp_warn.php @@ -69,10 +69,10 @@ class mcp_warn_info 'title' => 'MCP_WARN', 'version' => '1.0.0', 'modes' => array( - 'front' => array('title' => 'MCP_WARN_FRONT', 'auth' => 'acl_m_'), - 'list' => array('title' => 'MCP_WARN_LIST', 'auth' => 'acl_m_'), - 'warn_user' => array('title' => 'MCP_WARN_USER', 'auth' => 'acl_m_'), - 'warn_post' => array('title' => 'MCP_WARN_POST', 'auth' => 'acl_m_'), + 'front' => array('title' => 'MCP_WARN_FRONT', 'auth' => ''), + 'list' => array('title' => 'MCP_WARN_LIST', 'auth' => ''), + 'warn_user' => array('title' => 'MCP_WARN_USER', 'auth' => ''), + 'warn_post' => array('title' => 'MCP_WARN_POST', 'auth' => 'acl_m_,$id'), ), ); } |