Index: t3lib/class.t3lib_loadmodules.php =================================================================== --- t3lib/class.t3lib_loadmodules.php (revision 9489) +++ t3lib/class.t3lib_loadmodules.php (working copy) @@ -257,7 +257,11 @@ if (is_array($GLOBALS['TBE_MODULES']['_configuration'][$name]['configureModuleFunction'])) { $obj = $GLOBALS['TBE_MODULES']['_configuration'][$name]['configureModuleFunction']; if (is_callable($obj)) { - return call_user_func($obj, $name, $fullpath); + $MCONF = call_user_func($obj, $name, $fullpath); + if ($this->checkModAccess($name, $MCONF) !== TRUE) { + return FALSE; + } + return $MCONF; } }