/***************************************
* www.program-o.com
* PROGRAM O 
* Version: 2.6.4
* FILE: parse_BBCode/INSTALL
* AUTHOR: DAVE MORTON
* DATE: FEB 26th, 2012
* DETAILS: BBCode parser INSTALL instructions
***************************************/



STEP 1:
----------------------------------------------------------------------------------------------
- put the parseBBCode folder in the bot chatbot/addons/ folder


STEP 2:
----------------------------------------------------------------------------------------------
- add the following lines to load_addons.php

//load the word censor functions
include("parseBBCode/parseBBCode.php");


STEP 3:
----------------------------------------------------------------------------------------------
- add the following line to the function run_post_response_useraddon() (in load_addons.php)

//run the BBCode output parser before outputting
checkForParsing($convoArr);


STEP 4:  (Optional and experimental)
----------------------------------------------------------------------------------------------
- add the following line to the function start_response_useraddon() (in load_addons.php)

//run the BBCode input parser before sending into the system
parseInput($convoArr);



Please note that this addon comes "standard" with the original Program O version 2.0 package, and
is already installed and set up by default. the only time you will need to install this addon is
if you have previously uninstalled or removed it.


