15
Please, can you try this?
Open displayimage.php and replace:
if ((($xoopsModuleConfig['anosee']) != 1) && !is_object($xoopsUser)) {
redirect_header(XOOPS_URL."/user.php", 2, _NOPERM);
exit();
}
with
if (empty($xoopsModuleConfig['anosee']) && !is_object($xoopsUser)) {
redirect_header(XOOPS_URL."/user.php", 2, _NOPERM);
exit();
}
If this doesn't work, than you can remove that lines. If you remove them, you can't disallow anonymous to view the pics.