MyBB Community Forums

Full Version: [F] "Reply to all" error [C-Chris]
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
It does fix the issue....

Thanks to you mate.
(2008-11-29, 09:28 PM)Kioshi Wrote: [ -> ]Mhh it seems that the MyBB Team has deleted a line in the private.php which normally should be there.

To fix this problem please open up private.php and search for:

			else if($mybb->input['do'] == 'replyall')
			{
				$subject = "Re: $subject";

				// Get list of recipients
				$recipients = unserialize($pm['recipients']);
				if(isset($recipients['to']) && is_array($recipients['to']))
Replace with
			else if($mybb->input['do'] == 'replyall')
			{
				$subject = "Re: $subject";

				// Get list of recipients
				$recipients = unserialize($pm['recipients']);
				$recipientids = $pm['fromid'];
				if(isset($recipients['to']) && is_array($recipients['to']))

That line was removed because of a bug for some other reason - I'll find it in the archive
Uhh..I haven't knew that. Well the line existed 2 times in the old private.php and maybe only one was buggy. But if both lines caused a problem, we'll have to find another solution for including the senders uid into the list.
Ah, that's right - It in there twice
Thank you for your bug report.

This bug has been fixed in our internal code repository. Please note that the problem will not be fixed here until these forums are updated.

With regards,
MyBB Group
Pages: 1 2