Posted by Brandon Smith
2014-03-04

Thank you Tom! That did work however, whenever they click on "edit" for example it takes them to a white blank page. Is there a way for it to take them to the error message for example: "Unauthorized Access" or something similar to one of the error messages? Thanks for your help! It's greatly appreciated.
Posted by Tom
2014-03-05

You can show the edit button to only administrators. To do so, open the template ( [b]web/staff/tpl.(--table-name--).search.inc.php ) and enclose the button with php commands like this:
<?php if ( $sys->IsAdmin() ) { ?>

...anything here will not be shown to non-admin users...

<?php } ?>

That way you can prevent non-admin users from clicking the edit button.