Quote:
Originally Posted by Nimrod.
I have the exact same problem and I have the latest version1.03. Refreshing it seems to clear it, but I dont want my member seeing that code and getting freaked out by thinking that they did something wrong.
Also, what about using our own smilies in PMs? The other person dosent recive the smilies, just the code for it. Will thisbe fixed when the quotes are fixed?
|
Both the pm support and the html code appearing when using quickreply was fixed in version 1.03... I am unable to reproduce the problem.
In you admin control panel => Plugin Manager, does the plugin "Let the WYSIWYG editor know about the custom smilies" looks identical to this one?
Code:
// ############################### MySmilies VB Hack ###########################
if ($vbulletin->options['mysmiliesvb_option_masterswitch'] && is_array($vbulletin->smiliecache))
{
$smilies = $vbulletin->db->query("SELECT * FROM ".TABLE_PREFIX."mysmiliesvb WHERE userid=".$vbulletin->userinfo['userid']."");
while ($smilie = $vbulletin->db->fetch_array($smilies))
{
$smiliedata = array();
$smiliedata['smilieid'] = "9999".$smilie['mysmiliesvbid'];
$smiliedata['title'] = '';
$smiliedata['smilietext'] = $smilie['smilietext'];;
$smiliedata['smiliepath'] = $vbulletin->options['mysmiliesvb_option_smiliesurl']."/mysmilie_".$smilie['mysmiliesvbid'].".gif";
$smiliedata['showid'] = 0;
$smiliedata['imagecategoryid'] = 0;
$smiliedata['displayorder'] = 1;
$smiliedata['smilielen'] = strlen($smilie['smilietext']);
$vbulletin->smiliecache["9999".$smilie['mysmiliesvbid']] = $smiliedata;
}
}
// ############################### /MySmilies VB Hack ###########################