Already Read entries [message #162033] |
Mon, 15 March 2010 06:03 |
alopezie
Messages: 106 Registered: September 2003
Karma: 1
|
Senior Member |
|
|
After Update from 2.7.6 to 3.0 we noticed the following problem:
In treeview the read entries are not marked as read (in difference to the old version)
So if you go through the thread you need to "Update" the page with the browser to see what has been read already. Should happen directly after reading ...
Alopezie.de - das Forum zum Thema Haarausfall
|
|
|
|
|
|
|
|
Aw: Already Read entries [message #167356 is a reply to message #162109] |
Sat, 09 June 2012 15:38 |
alopezie
Messages: 106 Registered: September 2003
Karma: 1
|
Senior Member |
|
|
After upgrading to 3.0.4. RC2 this feature shows another problem :
- when going through the tree all seen entries are correctly marked
- when leaving the thread or reloading the forum does not save this information, so coming back everything is "unread"
Alopezie.de - das Forum zum Thema Haarausfall
|
|
|
Aw: Already Read entries [message #167441 is a reply to message #167356] |
Wed, 20 June 2012 05:18 |
alopezie
Messages: 106 Registered: September 2003
Karma: 1
|
Senior Member |
|
|
I replaced the new JS files with the old ones, but problem still existed. A bit strange. What to do ??
Alopezie.de - das Forum zum Thema Haarausfall
|
|
|
|
|
|
Re: Aw: Already Read entries [message #187055 is a reply to message #187054] |
Sun, 31 January 2016 11:15 |
|
andynormancx
Messages: 6 Registered: January 2016
Karma: 0
|
Junior Member |
|
|
That change definitely makes marking read work better in tree view (as it wasn't really working at all before).
However, I could claim it is a complete fix. It still isn't working as well as it did in 2.7.7
I don't yet understand enough about how the read table is supposed to work to know if there is anything more I can do to improve it. I don't really know my way around the FUDforum code.
[Updated on: Sun, 31 January 2016 11:15] Report message to a moderator
|
|
|
|
|
Re: Aw: Already Read entries [message #187104 is a reply to message #187101] |
Mon, 04 April 2016 13:28 |
|
andynormancx
Messages: 6 Registered: January 2016
Karma: 0
|
Junior Member |
|
|
Ok, I have a better fix. In root_index.php.t, add the following to the switch statement:
case 'tree_msg':
if (_uid && $msg_obj) {
th_inc_view_count($msg_obj->thread_id);
if ($msg_obj->last_forum_view < $msg_obj->post_stamp) {
user_register_forum_view($msg_obj->forum_id);
}
if ($msg_obj->last_view < $msg_obj->post_stamp) {
user_register_thread_view($msg_obj->thread_id, $msg_obj->post_stamp,
}
}
break;
[Updated on: Tue, 05 April 2016 14:34] Report message to a moderator
|
|
|
|