Kunena 7.0.4 Released

The Kunena team has announce the arrival of Kunena 7.0.4 [K 7.0.4] 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

Question Profile Bug : dates

More
17 years 1 month ago #9266 by kohril
Profile Bug : dates was created by kohril
I'm facing a problem whith dates in member's profile page (my template is based on default_ex).

Error is :
Code:
Warning: Missing argument 3 for mb_convert_encoding(), called in /joomla_path/components/com_kunena/class.kunena.php on line 1353 and defined in /joomla_path/components/com_kunena/class.kunena.php on line 1296

An example :




As the concerned function's code is the following (in kunena.class.php, line 1296 to 1298) :
Code:
function mb_convert_encoding($text,$target_encoding,$source_encoding) { return $text; }

I solved the problem by hacking the code, becoming :
Code:
function mb_convert_encoding($text,$target_encoding,$source_encoding=null) { return $text; }

Enjoy.

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

Time to create page: 0.247 seconds