Well the code in this mod is very simple, I can't imagine it conflicting with anything unless another mod is trying to do more or less the same thing.
If you go to your Admin CP -> Plugin Manger -> Admin Max-Min Character and Image Override
and edit the plugin titled: "Max Character and Image Override"
You can change the execution order from "5" to "2"... Also erase all the php code in the plugin and replace it with below:
PHP Code:
if(in_array(($vbulletin->options['bop5_admin_enabled'] == 1) AND $vbulletin->userinfo['usergroupid'], explode(',', $vbulletin->options['bop5_admin_group'])))
{
$bop5post = $vbulletin->options['bop5_max_posts'];
$bop5min = $vbulletin->options['bop5_min_posts'];
$bop5imgxx = $vbulletin->options['bop5_max_img'];
$bop5gm = $vbulletin->options['bop5_max_gm'];
$bop5pm = $vbulletin->options['bop5_max_pm'];
$bop5vm = $vbulletin->options['bop5_max_vm'];
$vbulletin->options['postmaxchars'] = $bop5post;
$vbulletin->options['postminchars'] = $bop5min;
$vbulletin->options['maximages'] = $bop5imgxx;
$vbulletin->options['gm_maxchars'] = $bop5gm;
$vbulletin->options['pmmaxchars'] = $bop5pm;
$vbulletin->options['vm_maxchars'] = $bop5vm;
}
Save the plugin and test again. If you still have the problem go back one more time and change the execution order to: 10. If neither of these help I'm out of suggestions without knowing your mods.
Also I just want to confirm what exact version of vBulletin were you using and what number did you have the Max Images set to? (The default is 0.)
Thanks...