I cannot believe you have not fixed this. Contact Emails - Joomla! Forum - community, help and support
in front end contact com_contact/controllers/contact lines 101 missing else statement.
the code sites have updated.
joomla 2.5.7
joomla. 2.5.8
this current code:
if (!$params->get('custom_reply')) {
$sent = $this->_sendemail($data, $contact);
}
and should be:
if (!$params->get('custom_reply')) {
$sent = $this->_sendemail($data, $contact);
}else{
// custom reply code
// send message.
$sent = $this->_sendemail($data, $contact);
}
this cause contact emails not sent, when custom reply set global or yes.
yes, user message email has been sent.
fix damn thing.
the code sites have updated.
joomla 2.5.7
joomla. 2.5.8
this current code:
if (!$params->get('custom_reply')) {
$sent = $this->_sendemail($data, $contact);
}
and should be:
if (!$params->get('custom_reply')) {
$sent = $this->_sendemail($data, $contact);
}else{
// custom reply code
// send message.
$sent = $this->_sendemail($data, $contact);
}
this cause contact emails not sent, when custom reply set global or yes.
yes, user message email has been sent.
fix damn thing.
Comments
Post a Comment