- Posts: 138
- Thank you received: 10
Kunena 7.0.2 Released
The Kunena team has announce the arrival of Kunena 7.0.2 [K 7.0.2] in stable which is now available for download as a native Joomla extension for J! 5.3.x/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 Thank you error Kunena 6.4.1 - Joomla 5.2.5
Please Log in or Create an account to join the conversation.
Do-you still encounter the same issue with Kunena 6.4.2 ?
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.
very annoying hmmm any tips how to fix this?
Please Log in or Create an account to join the conversation.
return new KunenaMessageThankyou;
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.
Ok thks will check this..Try by deleting the content of the line 70 : github.com/Kunena/Kunena-Forum/blob/K6.4...ankyouHelper.php#L70 and put this at the same place :
return new KunenaMessageThankyou;
have error message like this when doing thank you0Too few arguments to function Kunena\Forum\Libraries\Forum\Message\Thankyou\KunenaMessageThankyou::__construct(), 0 passed in /var/www/www.site.com/libraries/kunena/src/Forum/Message/Thankyou/KunenaMessageThankyouHelper.php on line 69 and exactly 1 expected
Please Log in or Create an account to join the conversation.
public static function get(int $identifier, $reload = false): KunenaMessageThankyou
{
if ($identifier instanceof KunenaMessageThankyou) {
return $identifier;
}
$id = \intval($identifier);
if ($id < 1) {
return new KunenaMessageThankyou;
}
if ($reload || empty(self::$_instances [$id])) {
unset(self::$_instances [$id]);
self::loadMessages([$id]);
}
return self::$_instances [$id];
}
Please Log in or Create an account to join the conversation.