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”

More
1 week 4 days ago - 1 week 4 days ago #1 by guidocx84
Hello, please see the Title on the browser tab if special characters like commas are inserted.

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.
 
Last edit: 1 week 4 days ago by guidocx84. Reason: Added more details

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

More
6 days 14 hours ago #2 by guidocx84
Hi,
I attach you an example.



Thanks.

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

More
5 days 23 hours ago #3 by Pinkeltje
Suppose it is an error in components\com_kunena\src\Controller\Topic\Item\TopicItemDisplay.php on line 660
Can you test if your replace
Code:
if ($menu_item) {     $this->params = $menu_item->getParams();     $subject = KunenaParser::parseText($this->topic->displayField('subject')); $this->setTitle($subject);
by this
Code:
if ($menu_item) {             $this->params = $menu_item->getParams();             $subject = $this->topic->subject; $this->setTitle($subject);
If confirmed I can make a pull request on Git
The following user(s) said Thank You: xillibit

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

More
5 days 13 hours ago #4 by guidocx84

Suppose it is an error in components\com_kunena\src\Controller\Topic\Item\TopicItemDisplay.php on line 660
Can you test if your replace
Code:
if ($menu_item) {     $this->params = $menu_item->getParams();     $subject = KunenaParser::parseText($this->topic->displayField('subject')); $this->setTitle($subject);
by this
Code:
if ($menu_item) {             $this->params = $menu_item->getParams();             $subject = $this->topic->subject; $this->setTitle($subject);
If confirmed I can make a pull request on Git

I confirm it works on my website! Thanks ;)

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

More
2 days 1 hour ago #5 by xillibit
Hello,

@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.

Time to create page: 0.657 seconds