When a post is quoted, it links the user name in the quote to the original post
This it not my code, but was posted on phpBB forums somewhere. I have cleaned it up and added a little extra bit that shows the time when the post was quoted.
# #-----[ OPEN ]------------------------------------------ # posting.php # #-----[ FIND ]------------------------------------------ #
$message_parser->message = '[quote="' . $post_data['quote_username'] . '"]' . censor_text(trim($message_parser->message)) . "[/quote]\n";
# #-----[ REPLACE WITH ]------------------------------------------ #
// $message_parser->message = '[quote="' . $post_data['quote_username'] . '"]' . censor_text(trim($message_parser->message)) . "[/quote]\n"; $message_parser->message = '[quote="' . '[url=' . generate_board_url() . "/viewtopic.$phpEx?p=$post_id#p$post_id" . ']' . $post_data['quote_username'] . ' » ' . $user->format_date($post_data['post_time']) . '[/url]' . '"]' . censor_text(trim($message_parser->message)) . "[/quote]\n";