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 Last posts not showing in index view
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.
xillibit wrote: This should be fixed in kunena 2.0.3 which will be released very soon
Thank you for your reply.
So the #1091 path is not useful to solve this issue
I will wait for new release
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.
xillibit wrote: Do you have applied the fix and the problem is still present ?
yes ... unfortunately there is the same problem and I made some test with various browser to be sure to have a cleaned cache.
This is the modified part following up #1091 ( github.com/mahagr/Kunena-2.0/commit/d597...a9c7ebe6b3cee37e4978 ) istructions:
protected function buildInfo() {
if ($this->_topics !== false)
return;
$this->_topics = 0;
$this->_posts = 0;
$this->_lastid = $this->id;
$categories = $this->getChannels();
$categories += KunenaForumCategoryHelper::getChildren($this->id);
foreach ($categories as $category) {
$category->buildInfo();
$lastCategory = $category->getLastCategory();
$this->_topics += max($category->numTopics, 0);
$this->_posts += max($category->numPosts, 0);
if ($lastCategory->last_post_time && KunenaForumCategoryHelper::get($this->_lastid)->last_post_time < $lastCategory->last_post_time)
$this->_lastid = $lastCategory->id;
}
}
Please Log in or Create an account to join the conversation.
regards 810
Please Log in or Create an account to join the conversation.
- chessfarrell
-
Topic Author
- Offline
- New Member
-
- Posts: 13
- Thank you received: 0
(1. Index view: category showing a 9-month old post)
(2. Category view)
(3. No topics and replies)
It seems the index view (#1) should display the post in green (#2), not the one in red. So the issue seems to endure, which attachment #3 seems to confirm: another category that was affected by the bug displays no topic and no reply while it's full of them.
If anyone experiencing the same problem can reproduce it with a new category so that we can inform the developers, don't hesitate to post the instructions here.
Please Log in or Create an account to join the conversation.