Board3

Update: August 31st, 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_once($phpbb_root_path . 'includes/functions_display.' . $phpEx);
    		
    Immediately after add:
    include_once($phpbb_root_path . 'wowhead/parse.' . $phpEx);
    		
  3. Inside the same file find:
    if (($text_length != 0) && (strlen($len_check) > $text_length))
    {
    	$message = censor_text(get_sub_taged_string(str_replace("\n", '
    ', $row['post_text']), $row['bbcode_uid'], $maxlen)); $posts[$i]['striped'] = true; } else { $message = censor_text( str_replace("\n", '
    ', $row['post_text']) ); }
    Immediately after add:
    $message = whp_parse($message);
  4. Save and close .portal/includes/functions.php and reupload as necessary.
TOP