- 
    Bug 
- 
    Resolution: Invalid
- 
    Major 
- 
    3.0.12-RC2
- 
    None
Not sure when this was added for 3.0.12 but a PHP error notice is displayed when sending PMs or anything to do with the messenger system due to this in includes/functions_messenger.php
|  		if (empty($this->replyto)) | 
| 		{ | 
| 			$this->replyto = mail_encode($config['sitename'], $encode_eol) . ' <' . $config['board_contact'] . '>'; | 
| 		} | 
|  | 
| 		if (empty($this->from)) | 
| 		{ | 
| 			$this->from = mail_encode($config['sitename'], $encode_eol) . ' <' . $config['board_contact'] . '>'; | 
| 		} | 
|  | 
| 		$encode_eol = ($config['smtp_delivery']) ? "\r\n" : $this->eol; | 
$encode_eol isn't set prior to running the mail_encode function.

