phpBB3 Portal
Update: March 19th, 2010
- These instructions assume you have already installed the script on your forums, and it is working.
- 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);
- Find:
- Save and close functions.php and reupload to your site as necessary.