Please login or register. Welcome to the Studio, guest!


Quick Links:


newBookmarkLockedFalling

Chris

Chris Avatar

******
Head Coder

19,519


June 2005
Mod Name: Reply Numbers in Posts
Created: April 27, 2007
Updated: April 27, 2007
Description: This modification shows the number of the post next to
the title of the post/thread in the form of "Original Post"
or "Reply #3."

Estimated Installation Time: 5 minutes
Files to Edit (2)
- thread.php
- templates/thread_postbit.tpl


Notes: All estimated line numbers are from an unedited version of wBB.
============================================
Open thread.php
============================================
Find: (Near line 239)
eval ("\$postbit .= \"".$tpl->get("thread_postbit")."\";");
$count++;

Add After:
// Start reply number mod
$replynum = $postsperpage*($page-1)+$count;
$replynum = ifelse(strlen($posts["posttopic"]) > 1," - ","").ifelse($replynum == 0,"Original Post","Reply #".$replynum);
// End reply number mod

============================================
Save thread.php
Open templates/thread_postbit.tpl
============================================
Find: (Near line 23)
<smallfont><b>$posts[posttopic]</b></font>

Replace with:
<smallfont><b>$posts[posttopic]</b>$replynum</font>

============================================
Save templates/thread_postbit.tpl
============================================

There. You're now done installing the mod.


newBookmarkLockedFalling