View Full Version : Bigger attatchments for moderators?
MaDCaT75
09-03-2003, 09:03 PM
Is there a way to allow bigger attatchment files for mods and super mods? Like say have regular users be 84 k and moderators and super mods be 2mb ?
I suppose you can do it via usergroups. ill have a look.
EvilLS1
09-03-2003, 10:11 PM
This will remove the attachment size limit completely for mods and admins, if thats helpful.
In admin/functions Find:
if ($maxattachsize!=0 and $filesize>$maxattachsize) {
// too big!
@unlink($attachment);
eval("standarderror(\"".gettemplate("error_attachtoobig")."\");");
exit;
}
Replace it with:
if ($maxattachsize!=0 and $filesize>$maxattachsize and $bbuserinfo[usergroupid]!=5 and $bbuserinfo[usergroupid]!=6 and $bbuserinfo[usergroupid]!=7) {
// too big!
@unlink($attachment);
eval("standarderror(\"".gettemplate("error_attachtoobig")."\");");
exit;
}
MaDCaT75
09-03-2003, 10:27 PM
Thanks I appreciate it :)
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.