********************************************************************************* * MOD NAME: Start Time Hack * ********************************************************************************* * DESCRIPTION: Shows the time of the first post of a thread in forum page * * DEMO: http://www.lkubb.dns2go.com * * * ********************************************************************************* * CREATED BY: LK * * DATE: 03/25/02 * * UPDATED BY: Allen Ayres * * DATE: 06/29/2003 * * VERSION: version 1.5 * * * ********************************************************************************* ********************************************************************************* * REQUIREMENTS: Full License * * COMPATABILITY: works with v6.5.0 * ********************************************************************************* * FILES MODIFIED: ubb_forum.cgi, public_forum_page.pl * ********************************************************************************* * DISCLAIMER: By using this modification, the user implicitly agrees * * that they are willingly modifying any and all files at * * their own risk. Should any errors occur either as a * * direct or indirect result of said modifications the user * * agrees not to hold Infopop Corporation or any of the * individuals listed accountable. * * * * * * IN OTHER WORDS: PLEASE MAKE BACKUP COPIES OF EVERY FILE YOU PLAN TO * * MODIFY PRIOR TO MODIFICATION!! * * * * * * FOR MORE TIPS AND TRICKS FOR USE WITH THE ULTIMATE BULLETIN BOARD * * PLEASE VISIT US AT: * * * * http://www.ubbdev.com/ * * * ********************************************************************************* ********************************************************************************* ********************** * Open ubb_forum.cgi * ********************** Find: ----- $msg_icon = $this_topic_data[4]; Add below: ---------- $firstpost = &DateFormatJS($this_topic_data[6], $this_topic_data[7], 1, 1, 1, 1); ***************************** * Open public_forum_page.pl * ***************************** Find: ----- $this_html .= qq~ $topic_start_name ~; Replace with: ------------- $this_html .= qq~ $topic_start_name
$firstpost
~;