|
@@ 419-423 (lines=5) @@
|
| 416 |
|
<span class="smalltext">« <strong> ', $txt['sent_to'], ':</strong> '; |
| 417 |
|
|
| 418 |
|
// People it was sent directly to.... |
| 419 |
|
if (!empty($message['recipients']['to'])) |
| 420 |
|
echo implode(', ', $message['recipients']['to']); |
| 421 |
|
|
| 422 |
|
// Otherwise, we're just going to say "some people"... |
| 423 |
|
elseif ($context['folder'] != 'sent') |
| 424 |
|
echo '(', $txt['pm_undisclosed_recipients'], ')'; |
| 425 |
|
|
| 426 |
|
echo ' |
|
@@ 927-931 (lines=5) @@
|
| 924 |
|
|
| 925 |
|
// Show the recipients. |
| 926 |
|
// @todo This doesn't deal with the sent item searching quite right for bcc. |
| 927 |
|
if (!empty($message['recipients']['to'])) |
| 928 |
|
echo implode(', ', $message['recipients']['to']); |
| 929 |
|
|
| 930 |
|
// Otherwise, we're just going to say "some people"... |
| 931 |
|
elseif ($context['folder'] != 'sent') |
| 932 |
|
echo '(', $txt['pm_undisclosed_recipients'], ')'; |
| 933 |
|
|
| 934 |
|
echo ' |