Kunena 7.0.2 Released

The Kunena team has announce the arrival of Kunena 7.0.2 [K 7.0.2] in stable which is now available for download as a native Joomla extension for J! 5.3.x/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

Topics that are moved into this category are generally considered to be closed. Users may want to add additional information but these topics should not be resurrected in order to discuss new problems or unrelated matters.

Question IMG Tag problem after upgrade to Kunena 1.5.5 PROPER

More
16 years 5 months ago #29552 by fortminor
crisscross wrote:

Just noticed another thing that is not working. Signatures with IMG-tag that points to fbfiles/images shows the bb-code and links to the image.


You may try to change the line 368 at kunena.parser.php
Code:
if($task->autolink_disable == 0)

with this one:
Code:
if($task->autolink_disable == 1)

Just changing 0 to 1.

This is also useful solution for those who experience problem that img's at signature automaticly link to its source.

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

More
16 years 5 months ago #29603 by NinjaSMS
Yes thank you all for your help! I downloaded the attached file by xillibit and all is working!

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

More
16 years 5 months ago #29703 by zombiebob
woot woot

replacing kunena.parser.php with the one in the zip file on this thread fixed the image display problem!!

whoop whoop! :laugh:

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

More
16 years 5 months ago #29922 by sarkit
jerry wrote:

Just back from my holiday. I am seeing inproper fix for this issue. Actually in Kunena 1.5.5 devs tried to check file extension. Both modifications from users are wrong as they disable this check.
Proper solution is:
/components/com_kunena/lib/kunena.parser.php lines: 345-348
before:

Code:
$file_ext = explode(',', $params->get('upload_extensions')); preg_match('/\.([\w\d]+)$/', $between, $matches); } if (!in_array(strtolower($matches[1]), $file_ext)) break;

after:
Code:
$file_ext = explode(',', $params->get('upload_extensions')); } preg_match('/\.([\w\d]+)$/', $between, $matches); if (!in_array(strtolower($matches[1]), $file_ext)) break;

HaND, Jerry


hv a lil problem..i m using cuteftp to chnge php..but i cant see these codes in 345-348.using kunena 1.5.5..missing something..but wht is tht..?

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

More
16 years 5 months ago #30152 by halo3montage
Problem fixed in 1.5.6!

Thanks Kunena Team :woohoo:

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

More
16 years 5 months ago #30455 by RonnyStraetling
Hi all,

don't know whats wrong with my side - there it is still the same issue with 1.5.6. I compared the coding above and it's identical. :S

Any idea?

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

Time to create page: 0.283 seconds