diff options
author | Alec <arr70017@uga.edu> | 2018-10-15 21:57:23 -0400 |
---|---|---|
committer | Alec <arr70017@uga.edu> | 2018-10-15 21:57:23 -0400 |
commit | a62141ea68e904927032276cb73ad483cbb93a1d (patch) | |
tree | af8a55799af1fab4cf62e35b0afbce8e3f1765d3 /phpBB | |
parent | 7e003bf687b340bba822fc512bfb2b2c8235a6ad (diff) | |
download | forums-a62141ea68e904927032276cb73ad483cbb93a1d.tar forums-a62141ea68e904927032276cb73ad483cbb93a1d.tar.gz forums-a62141ea68e904927032276cb73ad483cbb93a1d.tar.bz2 forums-a62141ea68e904927032276cb73ad483cbb93a1d.tar.xz forums-a62141ea68e904927032276cb73ad483cbb93a1d.zip |
[ticket/15841] Allow postrow pm link to be modified by event
Allow postrow.contact pm link to be modified by event above
All other variables in postrow.contact can be modified by the event already
This lets you hide all contact info on a per user basis
PHPBB3-15841
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/viewtopic.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php index 28e00dc6fa..55b41aa7fa 100644 --- a/phpBB/viewtopic.php +++ b/phpBB/viewtopic.php @@ -2115,7 +2115,7 @@ for ($i = 0, $end = count($post_list); $i < $end; ++$i) array( 'ID' => 'pm', 'NAME' => $user->lang['SEND_PRIVATE_MESSAGE'], - 'U_CONTACT' => $u_pm, + 'U_CONTACT' => $post_row['U_PM'], ), array( 'ID' => 'email', |