Kunena 7.0.5 & Kunena 6.4.11 – Security Updates Released

The Kunena team has announce the arrival of Kunena 7.0.5 [K 7.0.5] in stable which is now available for download as a native Joomla extension for J! 5.4.x/6.0.x. This version addresses most of the issues that were discovered in K 6.2 / K 6.3 / K 6.4 and issues discovered during the last development stages of K 7.0.

The Kunena team is also pleased to announce the eleventh version of Kunena 6.4, a native Joomla extension for Joomla! 5.0, 5.1, 5.2, 5.3, 5.4 and 6.0.

Question Remove old Mambo references

More
17 years 3 months ago #5602 by woonydanny
in kunena.mail.php i noticed some really old mambo references from simpleboard days that can be updated.

Code:
class fbMail { /** * function to send mails (uses mosmail in mambo 4.5.1 and later, falls back to phpmail if mosmail doesn't exist * * @param string $fromMail * @param string $fromName * @param string $toMail * @param string $subject * @param string $body * message to be send */ function send($fromMail, $fromName, $toMail, $subject, $body) { if (function_exists(mosMail)) mosMail($fromMail, $fromName, $toMail, $subject, $body); else { $headers = "MIME-Version: 1.0\r\n"; $headers .= "Content-Type: text/plain;" . _ISO . "\r\n"; $headers .= "From: $fromName <$fromMail>\r\n"; $headers .= "Reply-To: $fromName <$fromMail>\r\n"; $headers .= "X-Priority: 3\r\n"; $headers .= "X-MSMail-Priority: Low\r\n"; $headers .= "X-Mailer: Mambo Open Source 4.5\r\n"; mail($toMail, $subject, $body, $headers); } } } ?>

still wish that i can write my forum signature through a jomsocial plugin and do it from my jomsocial profile :(

Please Log in or Create an account to join the conversation.

More
17 years 3 months ago #5605 by Matias
This class is unused and will be removed soon. Thank you for informing us!

Please Log in or Create an account to join the conversation.

Time to create page: 0.236 seconds