Instructions for making it work with vbshout
I checked the vbshout hack. It was really easy adding support for MySmilies.
Instructions for getting MySmilies working in vbShout:
open vbshout.php (in your FORUM ROOT)
find (the first 2 ocurrences)
Quote:
$Shout['s_shout'] = bbcodeparser($Shout['s_shout']);
|
replace it with:
Quote:
$GLOBALS['mysmiliesvb_userid'] = $Shout['s_by'];
$Shout['s_shout'] = bbcodeparser($Shout['s_shout']);
unset($GLOBALS['mysmiliesvb_userid']);
|
That's it