| Tutorials Main Latest Tutorials Popular Tutorials Top Rated Tutorials |
| Login to See your Favorite Tutorials |
| 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: 493 | |
| Rating: 5.0 (1 Vote) | |
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 = '; } |
| Code: |
| $subject = '; |
| Code: |
| $subject = $post_info['topic_title']; |