A small problem I ran into during the install:
Quote:
open /mod/user.php
---------------------------------------
on line 145 below
<a href="user.php?s=<?php echo $session[sessionhash]; ?>&action=find"> View </a> |
add
<a href="user.php?s=<?php echo $session[sessionhash]; ?>&action=find"> Edit Acess Masks </a>
Upload all 3 files now and your done. Mods can now edit access masks for a user if their
usergroup has permission to and the forum allows them to.
and
|
It should be:
Quote:
open /mod/index.php
---------------------------------------
on line 145 find
<a href="user.php?s=<?php echo $session[sessionhash]; ?>&action=find"> View </a> |
replace with
<a href="user.php?s=<?php echo $session[sessionhash]; ?>&action=find"> View </a> |
<a href="user.php?s=<?php echo $session[sessionhash]; ?>&action=find"> Edit Acess Masks </a>
Upload all 4 files now and you're done. Mods can now edit access masks for a user if their
usergroup has permission to and the forum allows them to.
|