mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
- Bug 1893
git-svn-id: file:///svn/phpbb/trunk@5960 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
aa2da96774
commit
484ecb9188
1 changed files with 4 additions and 1 deletions
|
@ -309,7 +309,10 @@ function view_folder($id, $mode, $folder_id, $folder)
|
|||
{
|
||||
foreach ($value['to'] as $key => $values)
|
||||
{
|
||||
$value['bcc'] = implode(',', $values['bcc']);
|
||||
if (!empty($values['bcc']) && is_array($values['bcc']))
|
||||
{
|
||||
$value['bcc'] = implode(',', $values['bcc']);
|
||||
}
|
||||
$value['to'] = implode(',', $values['to']);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue