aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/viewtopic.php
diff options
context:
space:
mode:
authorJosh Woody <a_jelly_doughnut@phpbb.com>2010-08-22 15:28:05 -0500
committerJosh Woody <a_jelly_doughnut@phpbb.com>2010-08-28 15:49:47 -0500
commit2a59e6d4864a993842167a40a9762702ad58db12 (patch)
treec15664f5546ecbc5ce64ad499b951c3a6bf98096 /phpBB/viewtopic.php
parent64e6faa877af36f256da12d122e296f45706d359 (diff)
downloadforums-2a59e6d4864a993842167a40a9762702ad58db12.tar
forums-2a59e6d4864a993842167a40a9762702ad58db12.tar.gz
forums-2a59e6d4864a993842167a40a9762702ad58db12.tar.bz2
forums-2a59e6d4864a993842167a40a9762702ad58db12.tar.xz
forums-2a59e6d4864a993842167a40a9762702ad58db12.zip
[ticket/9772] Unify permissions for sending email when board_email_form is off
Sending email via memberlist.php was limited to users having u_sendemail. When board_email_form is disabled, no such requirement was enforced. This is now changed. PHPBB3-9772
Diffstat (limited to 'phpBB/viewtopic.php')
-rw-r--r--phpBB/viewtopic.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php
index 8926d5a40b..498088c5c8 100644
--- a/phpBB/viewtopic.php
+++ b/phpBB/viewtopic.php
@@ -1146,7 +1146,7 @@ while ($row = $db->sql_fetchrow($result))
get_user_rank($row['user_rank'], $row['user_posts'], $user_cache[$poster_id]['rank_title'], $user_cache[$poster_id]['rank_image'], $user_cache[$poster_id]['rank_image_src']);
- if (!empty($row['user_allow_viewemail']) || $auth->acl_get('a_email'))
+ if ((!empty($row['user_allow_viewemail']) && $auth->acl_get('u_sendemail')) || $auth->acl_get('a_email'))
{
$user_cache[$poster_id]['email'] = ($config['board_email_form'] && $config['email_enable']) ? append_sid("{$phpbb_root_path}memberlist.$phpEx", "mode=email&amp;u=$poster_id") : (($config['board_hide_emails'] && !$auth->acl_get('a_email')) ? '' : 'mailto:' . $row['user_email']);
}