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

Before posting in this category, please read sticky topics and, as general background, My Joomla site template makes a mess of Kunena .

If you have questions about third-party templates, please use the User-written Templates category or contact the author directly. This category should only be used for questions about templates developed and supported by the Kunena project.

Sticky Template changes between different Kunena versions (1.6.1 - 1.7.1)

More
14 years 2 months ago #115673 by Matias
Here is the difference between Kunena 1.7.0 and 1.7.1:
Code:
diff --git a/components/com_kunena/template/default/js/editor.js b/components/com_kunena/template/default/js/editor.js index 4b8fa34..bb8a044 100644 --- a/components/com_kunena/template/default/js/editor.js +++ b/components/com_kunena/template/default/js/editor.js @@ -572,6 +572,9 @@ function newAttachment() { input.addEvent('change', function() { this.removeEvents('change'); var __filename = this.get('value'); + if (__filename.lastIndexOf('\\') > -1) { + __filename = __filename.substring(1 + __filename.lastIndexOf('\\')); + } this.addEvent('change', function() { __file.getElement('input.kfile-input-textbox').set('value', __filename); }); diff --git a/components/com_kunena/template/default/menu.php b/components/com_kunena/template/default/menu.php index 663b157..de67f2e 100644 --- a/components/com_kunena/template/default/menu.php +++ b/components/com_kunena/template/default/menu.php @@ -12,6 +12,7 @@ // Dont allow direct linking defined ( '_JEXEC' ) or die (); +jimport( 'joomla.document.html.html' ); ?> <!-- Kunena Menu --> <div id="ktop">

File Attachment:

File Name: template-1...diff.zip
File Size:645 B

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

Time to create page: 0.440 seconds