Thank you kindly. However I can see what it should do, but for some reason it still does not show the link for REPLY TO ALL when only two people are listed. IE, I see the two people listed, the one that sent it and the other it went to, but no link to replay to both.
Modified in one place in Cyb - PM System Enhancements - RA
Pondering.
David
Quote:
Originally Posted by ssslippy
To fix the reply to all issue I forced it to be on at all times. This will only display when there is multiple recepients. This isnt quite the proper way but it was a simple quick fix.
Change
Code:
$cyb_confirmmulticc = substr($pm['recipients'],$cyb_checkmulticc,1);
if ($cyb_confirmmulticc ==';')
{
to
Code:
$cyb_confirmmulticc = 1;
if ($cyb_confirmmulticc =='1')
{
|