3
not sure about the block, but reviews can be modified.. i kinda included that feature in my development version, which won't be till 3.1 tho at least..
but for now here's how..
open modules/wfdownloads/review.php
find on lines 15 - 19:
if (!is_object($xoopsUser) && !$xoopsModuleConfig['anonpost'])
{
redirect_header(XOOPS_URL . '/user.php', 1, _MD_WFD_MUSTREGFIRST);
exit();
}
REPLACE WITH $gperm_handler =& xoops_gethandler('groupperm');
$groups = is_object($xoopsUser) ? $xoopsUser->getGroups() : XOOPS_GROUP_ANONYMOUS;
if (!$gperm_handler->checkRight("WFDownCatPerm", $cid,$groups, $xoopsModule->getVar('mid'))) {
redirect_header(XOOPS_URL.'/modules/wfdownloads/index.php',3, _NOPERM);
exit();
}
Find on line 81 (or thereabouts):
case "default";
default:
ADD RIGHT AFTER if (!is_object($xoopsUser) && !$xoopsModuleConfig['anonpost'])
{
redirect_header(XOOPS_URL . '/user.php', 1, _MD_WFD_MUSTREGFIRST);
exit();
}
save and you're done..
the only thing is, you have to now turn anonymous submission on in admin for it to allow anonymous to post reviews (which will also allow anonymous to post downloads if you have allowed user submissions)