- Posts: 59
- Thank you received: 2
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
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
thanks
take care
It seems OK for me with your file
thanks
take care
Please Log in or Create an account to join the conversation.
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.
- woonydanny
-
- Offline
- Elite Member
-
Less
More
- Posts: 694
- Thank you received: 22
16 years 11 months ago #17330
by woonydanny
still wish that i can write my forum signature through a jomsocial plugin and do it from my jomsocial profile
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.
16 years 11 months ago #17336
by sozzled
Blue Eagle vs. Crypsis reference guide
Read my blog and
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
Blue Eagle vs. Crypsis reference guide
Read my blog and
Please Log in or Create an account to join the conversation.
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?
In the mean time: can someone provide zip file with this fix?
Please Log in or Create an account to join the conversation.
16 years 11 months ago #17418
by xillibit
I don't provide support by PM, because this can be useful for someone else.
Replied by xillibit on topic Re:Warnings in search
The zip with this fixe :
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