phpBB3 Portal

Update: December 24th, 2009
  1. These instructions assume you have already installed the script on your forums, and it is working.
  2. Open ./portal/includes/functions.php and find
    include($phpbb_root_path . 'includes/message_parser.'.$phpEx);
    Immediately after add
    include_once($phpbb_root_path . 'wowhead/parse.php');
  3. Next, in the same file, find
    // Parse the message and subject
    $message = censor_text($row['post_text']);
    $message = str_replace("\n", '<br />', $message);
    		
    Immediately after add
    $message = whp_parse($message);
  4. Save and close functions.php and reupload to your site as necessary.
TOP