and another two file changes:
1. same admincp/mh_pmwbrd.php file
after the following line
HTML Code:
$pmtext = mh_pmwb_fetch_pmtext($vbulletin->GPC['pmtextid'], true);
add
HTML Code:
$cclist = array();
$bcclist = array();
$touser = unserialize($pmtext['touserarray']);
foreach($touser AS $key => $item)
{
if (is_array($item))
{
foreach($item AS $subkey => $subitem)
{
${$key.'list'}[]=$subitem;
}
}
else
{
$bcclist[]=$item;
}
}
replace
HTML Code:
print_label_row($vbphrase['mh_pmwb_to_users'] . ":", (is_array(unserialize($pmtext['touserarray'])) ? implode(", ", array_values(unserialize($pmtext['touserarray']))) : null));
with
HTML Code:
print_label_row($vbphrase['mh_pmwb_to_users'] . ":", implode(", ",$bcclist).implode(", ",$cclist) );
2. admincp/mh_pmwbrp.php file
after
HTML Code:
$pmreport = mh_pmwbrp_fetch_pmreport($vbulletin->GPC['pmreportid'], true, true);
add
HTML Code:
$cclist = array();
$bcclist = array();
$touser = unserialize($pmreport['touserarray']);
foreach($touser AS $key => $item)
{
if (is_array($item))
{
foreach($item AS $subkey => $subitem)
{
${$key.'list'}[]=$subitem;
}
}
else
{
$bcclist[]=$item;
}
}
replace
HTML Code:
print_label_row($vbphrase['mh_pmwb_to_users'] . ":", (is_array(unserialize($pmreport['touserarray'])) ? implode(", ", array_values(unserialize($pmreport['touserarray']))) : null));
with
HTML Code:
print_label_row($vbphrase['mh_pmwb_to_users'] . ":", implode(", ",$bcclist).implode(", ",$cclist));
so how have I done? I think I now have them all?