phpBB3 Portal

Update: March 19th, 2010
  1. These instructions assume you have already installed the script on your forums, and it is working.
  2. Open ./portal/includes/functions.php.
    • Find:
      include($phpbb_root_path . 'includes/message_parser.'.$phpEx);
      After Add:
      include_once($phpbb_root_path . 'wowhead/parse.php');
    • Find:
      // Parse the message and subject
      $message = censor_text($row['post_text']);
      $message = str_replace("\n", '<br />', $message);
      		
      After Add:
      $message = whp_parse($message);
  3. Save and close functions.php and reupload to your site as necessary.
TOP