- Posts: 57
- Thank you received: 4
Kunena 6.4.7 Released
The Kunena team has announce the arrival of Kunena 6.4.7[K 6.4.7] in stable which is now available for download as a native Joomla extension for J! 5.0.x/5.1.x/5.2.x/5.3.x/5.4.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 6.4
Important note: Go to the Kunena Dashboard after an upgrade so that the Kunena database tables are also updated. This is particularly necessary for major version jumps so that the table changes are adapted.
Question “Titles not correctly escaped in case of special characters”
Example: www.kunena.org/forum/k6-4-0-support-arch...-after-kunena-update
As you can see the title is "Recent … instead of "Recent…
I have noticed different behaviours using different kind of commas. For example the ones used in the title of this topic doesn’t have the same problem of the ones used in the topic indicated above. On my Forum I have many topics like the one above.
It could be a problem also for SEO.
Thanks.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
- Posts: 941
- Thank you received: 147
Can you test if your replace
Please Log in or Create an account to join the conversation.
Suppose it is an error in components\com_kunena\src\Controller\Topic\Item\TopicItemDisplay.php on line 660
Can you test if your replaceby thisCode:if ($menu_item) { $this->params = $menu_item->getParams(); $subject = KunenaParser::parseText($this->topic->displayField('subject')); $this->setTitle($subject);If confirmed I can make a pull request on GitCode:if ($menu_item) { $this->params = $menu_item->getParams(); $subject = $this->topic->subject; $this->setTitle($subject);
I confirm it works on my website! Thanks
Please Log in or Create an account to join the conversation.
@Pinkeltje, i had merged yerstayday your changes
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.