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 rev 338 - kunena.link.php

More
17 years 3 months ago #2065 by jerry
Diff of /trunk/legacy/components/com_kunena/lib/kunena.link.class.php 337-338
You changed parameters for CKunenaLink::GetProfileLink.

As users are using older and will use newer versions of Kunena, I can only use db check on build version, which slows down site each time for every instance of module.

What's the proposed solution for 3rd party?

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

More
17 years 3 months ago #2197 by Matias
Replied by Matias on topic Re:rev 338 - kunena.link.php
That link was broken and needed to be fixed. Nobody should use beta version, so this is what I would do:

For now you should do the check. It won't slow the site down, <0.001 sec does not matter where Kunena uses 1-5 secs in one query..

I think that we will introduce version singleton class soon. It would be the easiest way to check if installation has succeed (and to close board while it is updated).

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

More
17 years 3 months ago #2221 by jerry
Replied by jerry on topic Re:rev 338 - kunena.link.php
Matias wrote:

That link was broken and needed to be fixed. Nobody should use beta version, so this is what I would do:

For now you should do the check. It won't slow the site down, <0.001 sec does not matter where Kunena uses 1-5 secs in one query..

I think that we will introduce version singleton class soon. It would be the easiest way to check if installation has succeed (and to close board while it is updated).

Thanx, it will help.

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

More
17 years 3 months ago #2226 by fxstein
The real solution for 3rd parties will be the API that we are going to put together. No 3rd party app or component should have to reach into the code of Kunena to get what they need, but rely on the external API we are going to build. For that, we will have to come up with a way to keep consistency across multiple versions of Kunena.

Check the API thread I posted and provide input if you have any ideas.

Thx!

fxstein

We love stars on the Joomla Extension Directory . :-)

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

More
17 years 3 months ago #2701 by jerry
Replied by jerry on topic Re:rev 338 - kunena.link.php
Problem is not solved as people use svn version. There isn't file with buildnumber and they are using it without installation. What to do?

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

More
17 years 3 months ago - 17 years 3 months ago #2719 by jerry
Replied by jerry on topic Re:rev 338 - kunena.link.php
SOLVED
Code:
$method = new ReflectionMethod('CKunenaLink', 'GetProfileLink'); $gplparams = $method->getNumberOfParameters(); if ($gplparams == 5) { $item->postname = CKunenaLink::GetProfileLink($fbConfig, $row->userid, $row->name); } else { $item->postname = CKunenaLink::GetProfileLink($row->userid, $row->name); }
Well, it requires PHP 5.
Last edit: 17 years 3 months ago by jerry.

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

Time to create page: 0.252 seconds