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.

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 How to change quick reply 'Please note'; how to delete 'Reason for Editing'

More
16 years 1 month ago - 16 years 1 month ago #45711 by jankees
1. When I use the 'quick reply' button in a forum I have below text displayed (next to the submit and cancel buttons):

'Please note: although no board code and smiley buttons are shown, they are still usable.'

In which file I can change this text??

2. When I want to edit a post (by using the edit button) Kunena asks me the reason editing: 'Reason for Editing' under the original message. I want this to be deleted. How can I do that?
Last edit: 16 years 1 month ago by sozzled. Reason: minor spelling edit in subject

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

More
16 years 1 month ago #45744 by @quila
Hi,

1. in administrator / components / com_kunena / language / kunena.english.php

2. components / com_kunena / template / default / smilie.class.php
search for "modified_reason"

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

More
16 years 1 month ago - 16 years 1 month ago #45775 by jankees
@quila wrote:

Hi,

1. in administrator / components / com_kunena / language / kunena.english.php

2. components / com_kunena / template / default / smilie.class.php
search for "modified_reason"


1. Found it :)

2. I found this:
Code:
<?php if ($editmode) { // Moderator edit area ?> <fieldset> <legend><?php @print(_KUNENA_EDITING_REASON)?></legend> <input name="modified_reason" size="40" maxlength="200" type="text" /><br /> </fieldset> <?php } ?>

How should I exactly comment out?? Total code (<?php .... <?php}?>) or only from <fieldset>.. </fieldset>??
Last edit: 16 years 1 month ago by jankees.

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

More
16 years 1 month ago #45816 by @quila
Try in this way

<?php
if ($editmode) {
// Moderator edit area
?>
<!--<fieldset>
<legend><?php @print(_KUNENA_EDITING_REASON)?></legend>
<input name="modified_reason" size="40" maxlength="200" type="text" /><br />

</fieldset>-->
<?php
}
?>

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

Time to create page: 0.345 seconds