- Posts: 33
- Thank you received: 4
Kunena 6.3.4 released
The Kunena team has announce the arrival of Kunena 6.3.4 [K 6.3.4] in stable which is now available for download as a native Joomla extension for J! 4.4.x/5.0.x/5.1.x. This version addresses most of the issues that were discovered in K 6.2 / K 6.3 and issues discovered during the last development stages of K 6.3
Note: Please go to the Kunena Dashboard after an upgrade so that the Kunena database tables are also updated.
Question Duplicate Attribute Error
Please Log in or Create an account to join the conversation.
<a class="page-link" ' . KunenaTemplate::getInstance()->tooltips(true) . ' href="' . $item->link . '" data-bs-toggle="tooltip" title="' . Text::_('COM_KUNENA_PAGE') . $item->text . '">' . $item->text . '</a>
Please Log in or Create an account to join the conversation.
- Posts: 518
- Thank you received: 73
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
- Posts: 518
- Thank you received: 73
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Link
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
- Posts: 518
- Thank you received: 73
Please Log in or Create an account to join the conversation.
I think error is still there but I read that browser doing some error correction:OK. But what has this have to do with Duplicate Attribute Error?
- Browser error recovery of HTML
- Browser normalisation of HTML
- Manipulation of the DOM via JavaScript
Like I said before its within this file C:\xampp\htdocs\joomla\components\com_kunena\template\aurelia\layouts\widget\pagination\item\default.php
If I remove this KunenaTemplate::getInstance()->tooltips(true) .
Before
<a class="page-link" ' . KunenaTemplate::getInstance()->tooltips(true) . ' href="' . $item->link . '" data-bs-toggle="tooltip" title="' . Text::_('COM_KUNENA_PAGE') . $item->text . '">' . $item->text . '</a>
After
<a class="page-link" ' . ' href="' . $item->link . '" data-bs-toggle="tooltip" title="' . Text::_('COM_KUNENA_PAGE') . $item->text . '">' . $item->text . '</a>
Error is gone !
Please Log in or Create an account to join the conversation.