| @@ 371-373 (lines=3) @@ | ||
| 368 | <li><a href="', $message['member']['website']['url'], '" title="' . $message['member']['website']['title'] . '" target="_blank" rel="noopener">', ($settings['use_image_buttons'] ? '<span class="generic_icons www centericon" title="' . $message['member']['website']['title'] . '"></span>' : $txt['www']), '</a></li>'; |
|
| 369 | ||
| 370 | // Don't show the email address if they want it hidden. |
|
| 371 | if ($message['member']['show_email']) |
|
| 372 | echo ' |
|
| 373 | <li><a href="mailto:', $message['member']['email'], '" rel="nofollow">', ($settings['use_image_buttons'] ? '<span class="generic_icons mail centericon" title="' . $txt['email'] . '"></span>' : $txt['email']), '</a></li>'; |
|
| 374 | ||
| 375 | // Since we know this person isn't a guest, you *can* message them. |
|
| 376 | if ($context['can_send_pm']) |
|
| @@ 223-225 (lines=3) @@ | ||
| 220 | <ul class="clear">'; |
|
| 221 | ||
| 222 | // Email is only visible if it's your profile or you have the moderate_forum permission |
|
| 223 | if ($context['member']['show_email']) |
|
| 224 | echo ' |
|
| 225 | <li><a href="mailto:', $context['member']['email'], '" title="', $context['member']['email'], '" rel="nofollow"><span class="generic_icons mail" title="' . $txt['email'] . '"></span></a></li>'; |
|
| 226 | ||
| 227 | // Don't show an icon if they haven't specified a website. |
|
| 228 | if ($context['member']['website']['url'] !== '' && !isset($context['disabled_fields']['website'])) |
|
| @@ 302-307 (lines=6) @@ | ||
| 299 | <dt>', $txt['profile_posts'], ': </dt> |
|
| 300 | <dd>', $context['member']['posts'], ' (', $context['member']['posts_per_day'], ' ', $txt['posts_per_day'], ')</dd>'; |
|
| 301 | ||
| 302 | if ($context['member']['show_email']) |
|
| 303 | echo ' |
|
| 304 | <dt>', $txt['email'], ': </dt> |
|
| 305 | <dd><a href="mailto:', $context['member']['email'], '">', $context['member']['email'], '</a></dd>'; |
|
| 306 | ||
| 307 | if (!empty($modSettings['titlesEnable']) && !empty($context['member']['title'])) |
|
| 308 | echo ' |
|
| 309 | <dt>', $txt['custom_title'], ': </dt> |
|
| 310 | <dd>', $context['member']['title'], '</dd>'; |
|