Quote:
Originally Posted by fridayweb
I understand everything you said, and I appreciate the break down. Yes users can currently see their own warnings. All users can see "View Warnings" if that person has greater than 0 points.
I want ALL users to be able to see ALL warnings of any other user. I'm sorry to be a bother, I'm just trying to get this worked out.
They still keep getting a No Permission - "you do not have permission to access this page." Error.
I think it has to do with "Warn.php?do=ViewWarnings&id=3732" .... the do ViewWarnings is set up in the .php code to be associated with canmoderate. I want to separate that out so that I can set it up by usergroups as well. Does that make sense?
|
Oh, OK, that's simple enough. In your Warn.php file, find:
PHP Code:
// You have permission to warn o_O
if($_GET['do']!='ViewMyWarnings'){
if(!can_moderate( )){
print_no_permission( );
}
}
Replace that with :
PHP Code:
// // You have permission to warn o_O
// if($_GET['do']!='ViewMyWarnings'){
// if(!can_moderate( )){
// print_no_permission( );
// }
// }
I hope this gets it for you.
Rgds
------------
John