12-06-2005, 01:00 PM
|
|
|
Join Date: Apr 2005
Location: Belgium
Posts: 341
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Hey chris,
It should normally not show up if you replace:
Quote:
construct_edit_toolbar($pagedata, 0, 'nonforum', iif($vbulletin->options['privallowsmilies'], 1, 0));
|
With
Quote:
construct_edit_toolbar($pagedata, 0, 'nonforum', 0, 1, 0));
|
However, this will delete the smilies for everyone and will still parse smilies if they type it.
If you also want to disable smilie parsing:
FIND:
Quote:
$parser->do_parse($pagedata, 1, 1, 1, 1, 1, $cachable);
|
REPLACE WITH:
Quote:
$parser->do_parse($pagedata, 1, 0, 1, 1, 1, $cachable);
|
|