Quote:
Originally Posted by Stoebi
Hi,
open admincp/read_pms.php
go to line 183 or search for:
PHP Code:
print_label_row('To', htmlspecialchars($pm['touserarray']));
replace:
PHP Code:
print_label_row('To' , is_array(unserialize($pm['touserarray'])) ? implode(", ", array_values(unserialize($pm['touserarray']))) : null);
Ideas taken/stolen from MarcoH64 ;-)
Kind Regards,
Stoebi
|
Looks like the product now has similar code added by the author.
Line 210-212:
PHP Code:
$to = is_array(unserialize($pm['touserarray'])) ? implode(", ", array_values(unserialize($pm['touserarray']))) : null;
$to = ($to == 'Array') ? htmlspecialchars($pm['touserarray']) : $to;
print_label_row('To' , $to);
Even with that code in there, I still see the gobbledygook before and after the username on the "To:" line. e.g. (red highlight):
To
a:1:{s:2:"cc";a:1:{i:1701;s:5:"Bravo
";}}
I am using 4.1.3 (and it still works perfectly except for that stuff on the To: line). Worked the same from 3.6.3 all the way to 4.1.3.
Any suggestions how to fix this?