Quote:
Originally posted by NTLDR
Should be a minor mod, can you point me in the direction of the hack/mods you have installed? Its probably just a small change to the bbcodeparse line in the news section.
|
sorry buddy... i was going to post that info but then forgot..
PHP Code:
Always allow HTML for Super Mods, Admins and other usergroups of choice. [mini-hack vB 2.0.3]
In admin/functions.php
Find:
====================
$post[message]=bbcodeparse($post[pagetext],$forum[forumid],$post[allowsmilie]);
//highlight words for search engine
====================
Replace with
if ($post[usergroupid]==6 OR $post[usergroupid]==5) {
$post[message]=bbcodeparse2($post[pagetext],1,1,1,1);
} else {
$post[message]=bbcodeparse($post[pagetext],$forum[forumid],$post[allowsmilie]);
}
//highlight words for search engine
===================
Just add more OR $post[usergroupid]==X to the IF statement for whatever usergroups you want to allow.
5 is Super Mod and 6 is Admin.