- Posts: 9
- Thank you received: 1
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
Solved Rendering Error in layout Message/Item: Property "inline" is not defined
Regards!
Please Log in or Create an account to join the conversation.
I don't provide support by PM, because this can be useful for someone else.
Please Log in or Create an account to join the conversation.
Thanks again!
How can I send you the data?
Please Log in or Create an account to join the conversation.
Just put the data into [confidential*][/confidential*] tags without the *
I don't provide support by PM, because this can be useful for someone else.
Please Log in or Create an account to join the conversation.
Regards
Markus
Please Log in or Create an account to join the conversation.
So that mean that the table attachments hasn't been updated when it should, check with phpymadmin and look the table #__kunena_attachments you will see be that the column inline is missingObject { code: 1054, message: "Unknown column 'inline' in 'field list'" }
To fix it, you need to apply the query just made a backup of you database before and apply this query on phpmyadmin by set the correct prefix corresponding to you database parameters :
ALTER TABLE `#__kunena_attachments` ADD `inline` tinyint(4) NOT NULL default '0'
AFTER `caption`;
I don't provide support by PM, because this can be useful for someone else.
Please Log in or Create an account to join the conversation.