Home
>
Outdated forums
>
Phorum 3 forums (READ ONLY)
>
Finished Mods and Plug-ins (READ ONLY)
>
Topic
List no. NEW posts on homepage
Posted by Mat
List no. NEW posts on homepage September 05, 2002 05:37AM |
Registered: 23 years ago Posts: 7 |
Re: List no. NEW posts on homepage October 23, 2002 01:07PM |
Registered: 22 years ago Posts: 12 |
Re: List no. NEW posts on homepage November 11, 2002 03:59PM |
Registered: 22 years ago Posts: 2 |
Re: List no. NEW posts on homepage January 27, 2003 07:55AM |
Registered: 20 years ago Posts: 2 |
Re: List no. NEW posts on homepage January 29, 2003 11:57AM |
Registered: 20 years ago Posts: 5 |
Anonymous User
Re: List no. NEW posts on homepage March 04, 2003 11:37AM |
The mod for this is quite simple. In index.php, find the line that starts with:
$posts = "$lNumPosts etc etc
above it, add these lines:
=============
// $index_old_message contains the last read message ID.
// $max_id contains the last post message ID.
// Subtract them, and you know how many new messages there are.
// If $index_old_message is not set, assume all posts are new.
if ($index_old_message) {
$new_posts = $index_max_id - $index_old_message;
} else {
$new_posts = $num_posts;
}
=============
and change the line mentioned above into something like this:
$posts="$lNumPosts: <strong>$num_posts</strong> ($new_posts new) ";
This should display the number of new posts on the bigger lists.
regards,
Yvo Brevoort
$posts = "$lNumPosts etc etc
above it, add these lines:
=============
// $index_old_message contains the last read message ID.
// $max_id contains the last post message ID.
// Subtract them, and you know how many new messages there are.
// If $index_old_message is not set, assume all posts are new.
if ($index_old_message) {
$new_posts = $index_max_id - $index_old_message;
} else {
$new_posts = $num_posts;
}
=============
and change the line mentioned above into something like this:
$posts="$lNumPosts: <strong>$num_posts</strong> ($new_posts new) ";
This should display the number of new posts on the bigger lists.
regards,
Yvo Brevoort
Anonymous User
Re: List no. NEW posts on homepage March 04, 2003 11:41AM |
Re: List no. NEW posts on homepage March 18, 2003 08:31PM |
Registered: 20 years ago Posts: 6 |
Martin Aftevik
Re: List no. NEW posts on homepage November 27, 2003 05:09AM |
Sorry, you do not have permission to post/reply in this forum.