5
This is module specific, depending on the design choice of the developer. Unfortunately you'll have to modify the module if you want to change the way a module behaves.
Usually near the top of the file you'll find the code that looks something like:
if (empty($xoopsUser) && !$xoopsModuleConfig['anonpost']) {
redirect_header(XOOPS_URL."/index.php",2,_MD_MUSTREGFIRST);
exit();
}
You'll want to change it to something like:
if (empty($xoopsUser) && !$xoopsModuleConfig['anonpost']) {
redirect_header(XOOPS_URL."/user.php",2,_MD_MUSTREGFIRST);
exit();
}