Quote:
Originally Posted by ssslippy
Princeton could you update this to work with Project Tools. Currently it says they are off but are they on or is this not possible?
|
click "Mark As Installed" if you want to be notified on new updates
add this to the switch statement in Process Rules (editor_toolbar_end) plugin:
PHP Code:
case 'project':
case 'projectpost':
$bbcodeon = ($vbulletin->options['pt_allowbbcode']) ? $vbphrase['on'] : $vbphrase['off'];
$imgcodeon = ($vbulletin->options['pt_allowbbimagecode']) ? $vbphrase['on'] : $vbphrase['off'];
$htmlcodeon = ($vbulletin->options['pt_allowhtml']) ? $vbphrase['on'] : $vbphrase['off'];
$smilieson = ($vbulletin->options['pt_allowsmilies']) ? $vbphrase['on'] : $vbphrase['off'];
break;