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 Warnings in search

More
16 years 11 months ago #17106 by tramber91
Replied by tramber91 on topic Re:Warnings in search
Hi Roland76

It seems OK for me with your file :cheer:

thanks

take care

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

More
16 years 11 months ago #17287 by Matias
Replied by Matias on topic Re:Warnings in search
Here's a mb_substr() fix which works for everybody:
Code:
function kn_mb_substr($str, $start, $length=NULL, $encoding=NULL) { if ($length === NULL) $length = strlen($str); if ($encoding === NULL) $encoding = KUNENA_CHARSET; if (!function_exists('mb_substr')) { if (CKunenaTools::isJoomla15()) { require_once(JPATH_LIBRARIES.DS.'phputf8'.DS.'utf8.php'); } else { return substr($str, $start, $length); } } return mb_substr($str, $start, $length, $encoding); }

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

More
16 years 11 months ago #17330 by woonydanny
Replied by woonydanny on topic Re:Warnings in search
is it possible to attach a kunena.class.php file with all the changes to overwrite my one :)

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
16 years 11 months ago #17336 by sozzled
Replied by sozzled on topic Re:Warnings in search
@Matias: I would like to see the universal fix included in an updated Kunena build, if that's possible, please :)

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

More
16 years 11 months ago #17365 by Matias
Replied by Matias on topic Re:Warnings in search
I will do this for Kunena 1.0 tree, so maybe we get a build with worst regression bugs fixed.

In the mean time: can someone provide zip file with this fix?

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

More
16 years 11 months ago #17418 by xillibit
Replied by xillibit on topic Re:Warnings in search
The zip with this fixe :

File Attachment:

File Name: class-af81...068e.zip
File Size:11.62 KB

I don't provide support by PM, because this can be useful for someone else.

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

Time to create page: 0.264 seconds