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 no attachment icon in thread view if attachment is not on first post?

More
16 years 11 months ago #15900 by emeyer
Im looking at flat.php where it says

$database->setQuery("SELECT mesid FROM #__fb_attachments WHERE mesid=$leaf->id");
$attachmentsicon = $database->loadResult();


later it tests for nonzero value on $attachmentsicon to add the icon.

Please can someone help me as to what query could find if there are any attachments in the entire thread, rather than just on the root post? Knowing this would help a long way to making some useful modules I could share.

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

More
16 years 11 months ago #16284 by Matias
Something like this could help (returns count of attachments in the thread):

$database->setQuery("SELECT count(*) FROM #__fb_attachments WHERE mesid IN (SELECT id FROM #__fb_messages WHERE thread=$leaf->id OR id=$leaf->id)");
$attachmentcount = $database->loadResult();

I don't know if it works, not tested..

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

More
16 years 11 months ago #17299 by emeyer
Thank you, I'll look at adding this patch too.

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

Time to create page: 0.228 seconds