I ran into a small issue with Module permissions. It should be a quick fix to get in before TP3.2.
A person with Run module permissions only cannot access the Manage modules page.
Near the top of the modules.static.action.php file you’ll find this code...
if(!$modx->hasPermission('edit_module') && $_REQUEST['a']==106) {
$e->setError(3);
$e->dumpError();
}
It should be
if(!$modx->hasPermission('[b]exec[/b]_module') && $_REQUEST['a']==106) {
$e->setError(3);
$e->dumpError();
}
This is such a simple fix I didn’t know if I should enter into the bugtracker or not. Let me know if you’d like me to.