PDA

View Full Version : How to prevent users from using smilies in Poll options?


newvbuser
03-18-2002, 12:18 PM
Hi our forum's members are using like 3-4 smilies for every poll option that is posted for a poll post.

Is there any way I can disable use of smilies in poll's options?

Thanks in advance!

Admin
03-18-2002, 12:34 PM
In showthread.php replace:
$option[question] = bbcodeparse($splitoptions[$counter-1],$forum[forumid],1);
with:
$option[question] = bbcodeparse($splitoptions[$counter-1],$forum[forumid],0);

newvbuser
03-19-2002, 06:10 AM
Hey thanks firefly :D

What does the 0 in place of 1 do ? I hope it will not mess up anything else? It means it'll not parse the smilie codes or all codes? thanks again.

Admin
03-19-2002, 06:22 AM
1/0 means parse/don't parse the smilies.