PDA

View Full Version : Admins/Supermods/Mods Exempt from Char. Minimum


Judge Dredd X
05-06-2012, 04:39 AM
Is there anyway to do this is 4.1.12? I want my staff to be exempt from the character minimum. I know there was a mod for 2.2 but it's in the archives and probably wouldn't work anyway. How can I accomplish this?

LifesGreatestGift
05-06-2012, 08:49 AM
I would PM the coder of the product and ask if he could upgrade it to vB4. (Boofo)

kh99
05-06-2012, 11:05 AM
You can do this with a simple plugin, using hook global_bootstrap_init_complete and this code:

global $vbulletin;
if (is_member_of($vbulletin->userinfo, 5, 6, 7))
{
$vbulletin->options['postminchars'] = 0;
}

Boofo
05-06-2012, 12:16 PM
You don't need the global $vbulletin; in that hook.

Judge Dredd X
05-06-2012, 04:46 PM
Much appreciated Boofo and kh99! Can't thank you enough!