Clan Adverts

Default Subject Forum Replies

Description: This little phpbb hack will give a default subject when a user replies instead of it being "No Subject"
Version: 1.0
Added on: 22 July 2007
Author: floppy
Difficulty Level: Very Easy
Views: 1038
Rating: 5.0 (1 Vote)
Detailed Profile

Open modules/Forums/posting.php

Find

Code:
   else if ( $mode == 'reply' )
   {
      $user_sig = ( $userdata['user_sig'] != ' ) ? $userdata['user_sig'] : ';

      $username = ( $userdata['session_logged_in'] ) ? $userdata['username'] : ';
      $subject = ';
      $message = ';

   }


In Lines find
Code:
$subject = ';


Replace with
Code:
$subject = $post_info['topic_title'];


Thats It.