MyBB Community Forums

Full Version: Regarding images rule
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,
One question:
admin can post as many images in one post, i have limited to 15 images per post but me(admin) is posting 15+ images in one post....how to enable it for super moderators also so that they can also post 15+ images in one post.......
Go to: ACP > Configurations > Posting
The options you seek will be there.
inc/datahandlers/post.php

find code similar to below around line 412
if($post['savedraft'] != 1 && $mybb->settings['maxpostimages'] != 0 && $permissions['cancp'] != 1)

change to :
if($post['savedraft'] != 1 && $mybb->settings['maxpostimages'] != 0 && $permissions['cancp'] != 1 && $mybb->user['usergroup'] != 3)