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
a781c76c93
commit
29d4376cd3
@ -16,10 +16,10 @@
|
||||
<div class="header">
|
||||
<h2>Top 10 Users</h2>
|
||||
<div class="linkbox">
|
||||
[<a href="top10.php?type=torrents">Torrents</a>]
|
||||
[<a href="top10.php?type=users"><strong>Users</strong></a>]
|
||||
[<a href="top10.php?type=tags">Tags</a>]
|
||||
[<a href="top10.php?type=votes">Favorites</a>]
|
||||
<a href="top10.php?type=torrents" class="brackets">Torrents</a>
|
||||
<a href="top10.php?type=users" class="brackets"><strong>Users</strong></a>
|
||||
<a href="top10.php?type=tags" class="brackets">Tags</a>
|
||||
<a href="top10.php?type=votes" class="brackets">Favorites</a>
|
||||
</div>
|
||||
</div>
|
||||
<?
|
||||
|
@ -589,12 +589,12 @@ function filelist($Str) {
|
||||
<a href="#" class="brackets" onclick="show_reported('<?=$TorrentID?>');return false;">View report information</a>
|
||||
<? } ?>
|
||||
</div>
|
||||
<div id="peers_<?=$TorrentID?>" class="hidden brackets"></div>
|
||||
<div id="downloads_<?=$TorrentID?>" class="hidden brackets"></div>
|
||||
<div id="snatches_<?=$TorrentID?>" class="hidden brackets"></div>
|
||||
<div id="files_<?=$TorrentID?>" class="hidden brackets"><?=$FileList?></div>
|
||||
<div id="peers_<?=$TorrentID?>" class="hidden"></div>
|
||||
<div id="downloads_<?=$TorrentID?>" class="hidden"></div>
|
||||
<div id="snatches_<?=$TorrentID?>" class="hidden"></div>
|
||||
<div id="files_<?=$TorrentID?>" class="hidden"><?=$FileList?></div>
|
||||
<? if($Reported) { ?>
|
||||
<div id="reported_<?=$TorrentID?>" class="hidden brackets"><?=$ReportInfo?></div>
|
||||
<div id="reported_<?=$TorrentID?>" class="hidden"><?=$ReportInfo?></div>
|
||||
<? } ?>
|
||||
<? if(!empty($Description)) {
|
||||
echo '<blockquote>'.$Text->full_format($Description).'</blockquote>';}
|
||||
|
@ -158,52 +158,52 @@ function check_paranoia_here($Setting) {
|
||||
<h2><?=$Username?></h2>
|
||||
<div class="linkbox">
|
||||
<? if (!$OwnProfile) { ?>
|
||||
[<a href="inbox.php?action=compose&to=<?=$UserID?>">Send Message</a>]
|
||||
<a href="inbox.php?action=compose&to=<?=$UserID?>" class="brackets">Send Message</a>
|
||||
|
||||
<? if(check_perms("users_mod")) {
|
||||
$DB->query("SELECT PushService FROM users_push_notifications WHERE UserID = '$UserID'");
|
||||
if($DB->record_count() > 0) { ?>
|
||||
[<a
|
||||
href="user.php?action=take_push&push=1&userid=<?=$UserID?>&auth=<?=$LoggedUser['AuthKey']?>">Push
|
||||
User</a>]
|
||||
<a
|
||||
href="user.php?action=take_push&push=1&userid=<?=$UserID?>&auth=<?=$LoggedUser['AuthKey']?>" class="brackets"
|
||||
>Push User</a>
|
||||
<? }
|
||||
}
|
||||
$DB->query("SELECT FriendID FROM friends WHERE UserID='$LoggedUser[ID]' AND FriendID='$UserID'");
|
||||
if($DB->record_count() == 0) { ?>
|
||||
[<a href="friends.php?action=add&friendid=<?=$UserID?>&auth=<?=$LoggedUser['AuthKey']?>">Add to friends</a>]
|
||||
<a href="friends.php?action=add&friendid=<?=$UserID?>&auth=<?=$LoggedUser['AuthKey']?>" class="brackets">Add to friends</a>
|
||||
<? }?>
|
||||
[<a href="reports.php?action=report&type=user&id=<?=$UserID?>">Report User</a>]
|
||||
<a href="reports.php?action=report&type=user&id=<?=$UserID?>" class="brackets">Report User</a>
|
||||
<?
|
||||
|
||||
}
|
||||
|
||||
if (check_perms('users_edit_profiles', $Class)) {
|
||||
?>
|
||||
[<a href="user.php?action=edit&userid=<?=$UserID?>">Settings</a>]
|
||||
<a href="user.php?action=edit&userid=<?=$UserID?>" class="brackets">Settings</a>
|
||||
<? }
|
||||
if (check_perms('users_view_invites', $Class)) {
|
||||
?>
|
||||
[<a href="user.php?action=invite&userid=<?=$UserID?>">Invites</a>]
|
||||
<a href="user.php?action=invite&userid=<?=$UserID?>" class="brackets">Invites</a>
|
||||
<? }
|
||||
if (check_perms('admin_manage_permissions', $Class)) {
|
||||
?>
|
||||
[<a href="user.php?action=permissions&userid=<?=$UserID?>">Permissions</a>]
|
||||
<a href="user.php?action=permissions&userid=<?=$UserID?>" class="brackets">Permissions</a>
|
||||
<? }
|
||||
if (check_perms('users_logout', $Class) && check_perms('users_view_ips', $Class)) {
|
||||
?>
|
||||
[<a href="user.php?action=sessions&userid=<?=$UserID?>">Sessions</a>]
|
||||
<a href="user.php?action=sessions&userid=<?=$UserID?>" class="brackets">Sessions</a>
|
||||
<? }
|
||||
if (check_perms('admin_reports')) {
|
||||
?>
|
||||
[<a href="reportsv2.php?view=reporter&id=<?=$UserID?>">Reports</a>]
|
||||
<a href="reportsv2.php?view=reporter&id=<?=$UserID?>" class="brackets">Reports</a>
|
||||
<? }
|
||||
if (check_perms('users_mod')) {
|
||||
?>
|
||||
[<a href="userhistory.php?action=token_history&userid=<?=$UserID?>">FL Tokens</a>]
|
||||
<a href="userhistory.php?action=token_history&userid=<?=$UserID?>" class="brackets">FL Tokens</a>
|
||||
<? }
|
||||
if (check_perms('admin_clear_cache') && check_perms('users_override_paranoia')) {
|
||||
?>
|
||||
[<a href="user.php?action=clearcache&id=<?=$UserID?>">Clear Cache</a>]
|
||||
<a href="user.php?action=clearcache&id=<?=$UserID?>" class="brackets">Clear Cache</a>
|
||||
<? } ?>
|
||||
</div>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user