aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/memberlist.php
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2006-06-10 23:11:03 +0000
committerNils Adermann <naderman@naderman.de>2006-06-10 23:11:03 +0000
commit1c169ed0899e469db53dbdff11f3d0ca040f269d (patch)
treec0e601e932dc88a18cd3190de9e11645cb37942c /phpBB/memberlist.php
parent8b40e7fe330b4b18b18116c7a0d197186860e7df (diff)
downloadforums-1c169ed0899e469db53dbdff11f3d0ca040f269d.tar
forums-1c169ed0899e469db53dbdff11f3d0ca040f269d.tar.gz
forums-1c169ed0899e469db53dbdff11f3d0ca040f269d.tar.bz2
forums-1c169ed0899e469db53dbdff11f3d0ca040f269d.tar.xz
forums-1c169ed0899e469db53dbdff11f3d0ca040f269d.zip
- forgot to commit common.php
- cleaning up a few more mcp permissions - adjust some links - make global topics work properly in MCP git-svn-id: file:///svn/phpbb/trunk@6045 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/memberlist.php')
-rw-r--r--phpBB/memberlist.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/memberlist.php b/phpBB/memberlist.php
index 6fe3bf1116..251c4c3153 100644
--- a/phpBB/memberlist.php
+++ b/phpBB/memberlist.php
@@ -1230,7 +1230,7 @@ function show_profile($data)
'U_PROFILE' => append_sid("{$phpbb_root_path}memberlist.$phpEx", 'mode=viewprofile&amp;u=' . $user_id),
'U_SEARCH_USER' => ($auth->acl_get('u_search')) ? append_sid("{$phpbb_root_path}search.$phpEx", "author_id=$user_id&amp;sr=posts") : '',
- 'U_NOTES' => $auth->acl_gets('m_', 'a_') ? append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=notes&amp;mode=user_notes&amp;u=' . $user_id, true, $user->session_id) : '',
+ 'U_NOTES' => $auth->acl_getf_global('m_') ? append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=notes&amp;mode=user_notes&amp;u=' . $user_id, true, $user->session_id) : '',
'U_WARN' => $auth->acl_getf_global('m_warn') ? append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=warn&amp;mode=warn_user&amp;u=' . $user_id, true, $user->session_id) : '',
'U_PM' => ($auth->acl_get('u_sendpm')) ? append_sid("{$phpbb_root_path}ucp.$phpEx", 'i=pm&amp;mode=compose&amp;u=' . $user_id) : '',
'U_EMAIL' => $email,