mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 02:46:30 +00:00
Empty commit
This commit is contained in:
parent
96faadd82e
commit
24d951c055
@ -62,6 +62,8 @@
|
||||
if (isset($LoggedUser['CustomForums'][$ForumID]) && $LoggedUser['CustomForums'][$ForumID] === 0) { error(403); }
|
||||
}
|
||||
|
||||
|
||||
|
||||
$ForumName = display_str($Forums[$ForumID]['Name']);
|
||||
if($LoggedUser['CustomForums'][$ForumID] != 1 && $Forums[$ForumID]['MinClassRead'] > $LoggedUser['Class']) { error(403); }
|
||||
|
||||
|
@ -1,5 +1,7 @@
|
||||
<?
|
||||
if (!check_perms('users_mod')) {
|
||||
if (!check_perms('users_mod')
|
||||
|
||||
) {
|
||||
error(403);
|
||||
}
|
||||
View::show_header('Staff Tools');
|
||||
@ -15,7 +17,7 @@
|
||||
<? } if (check_perms('admin_manage_ipbans')) { ?>
|
||||
<tr><td><a href="tools.php?action=ip_ban">IP address bans</a></td></tr>
|
||||
|
||||
<? } if (check_perms('users_view_ips')) { ?>
|
||||
<? } if (check_perms('admin_login_watch')) { ?>
|
||||
<tr><td><a href="tools.php?action=login_watch">Login watch</a></td></tr>
|
||||
<? } if (check_perms('admin_manage_forums')) { ?>
|
||||
<tr><td><a href="tools.php?action=forum">Forums</a></td></tr>
|
||||
@ -75,7 +77,7 @@
|
||||
<tr><td><a href="tools.php?action=update_geoip">Update GeoIP </a></td></tr>
|
||||
<? } if (check_perms('admin_create_users')) { ?>
|
||||
<tr><td><a href="tools.php?action=create_user">Create user</a></td></tr>
|
||||
<? } if (check_perms('admin_clear_cache')) { ?>
|
||||
<? } if (check_perms('users_mod')) { ?>
|
||||
<tr><td><a href="tools.php?action=clear_cache">Clear/view a cache key</a></td></tr>
|
||||
<? } if (check_perms('users_view_ips')) { ?>
|
||||
<tr><td><a href="tools.php?action=dupe_ips">Duplicate IP addresses</a></td></tr>
|
||||
@ -92,7 +94,9 @@
|
||||
|
||||
<tr><td><a href="schedule.php?auth=<?=$LoggedUser['AuthKey']?>">Schedule</a></td></tr>
|
||||
<? }?>
|
||||
<? if (check_perms('users_mod')) { ?>
|
||||
<tr><td><strong><a href="tools.php?action=public_sandbox">Public sandbox</a></strong></td></tr>
|
||||
<? } ?>
|
||||
<? if (check_perms('users_mod')) { ?>
|
||||
<tr><td><strong><a href="tools.php?action=mod_sandbox">Mod-level sandbox</a></strong></td></tr>
|
||||
<? } ?>
|
||||
|
Loading…
Reference in New Issue
Block a user