6
I actually found a work-around or a temp fix for the problem of not being able to edit articles as admin or your own posts. If anyone has the same problem, this might help:
In the news module directory, in submit.php, on line 80 there is the following chunk of code:
if(is_object($xoopsUser) && ($xoopsUser->getVar('uid')!=$tmpstory->uid()) && !is_admin_group()) {
redirect_header(XOOPS_URL.'/modules/news/index.php', 3, _NOPERM);
exit();
}
} else { // Users can't edit their articles
redirect_header(XOOPS_URL.'/modules/news/index.php', 3, _NOPERM);
exit();
}
Just comment the whole else{} part out, and you should be able to edit articles again. The whole conditional block makes no sense to me - two identical statements get executed, no matter what.