mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 19:06:27 +00:00
Empty commit
This commit is contained in:
parent
13a1424698
commit
1aba04093e
@ -1,5 +1,8 @@
|
|||||||
CHANGE LOG
|
CHANGE LOG
|
||||||
|
|
||||||
|
2015-11-06 by newman
|
||||||
|
Add proper title to torrent stats page. Update token history to display deleted torrents.
|
||||||
|
|
||||||
2015-10-31 by newman
|
2015-10-31 by newman
|
||||||
Add read-only version of site options for mods
|
Add read-only version of site options for mods
|
||||||
|
|
||||||
|
@ -77,7 +77,7 @@
|
|||||||
$Pie->generate();
|
$Pie->generate();
|
||||||
$Categories = $Pie->url();
|
$Categories = $Pie->url();
|
||||||
|
|
||||||
View::show_header();
|
View::show_header('Detailed torrent statistics');
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<div class="box pad center">
|
<div class="box pad center">
|
||||||
|
@ -70,8 +70,8 @@
|
|||||||
t.Format,
|
t.Format,
|
||||||
t.Encoding
|
t.Encoding
|
||||||
FROM users_freeleeches AS f
|
FROM users_freeleeches AS f
|
||||||
JOIN torrents AS t ON t.ID = f.TorrentID
|
LEFT JOIN torrents AS t ON t.ID = f.TorrentID
|
||||||
JOIN torrents_group AS g ON g.ID = t.GroupID
|
LEFT JOIN torrents_group AS g ON g.ID = t.GroupID
|
||||||
WHERE f.UserID = $UserID
|
WHERE f.UserID = $UserID
|
||||||
ORDER BY f.Time DESC
|
ORDER BY f.Time DESC
|
||||||
LIMIT $Limit");
|
LIMIT $Limit");
|
||||||
@ -106,7 +106,11 @@
|
|||||||
foreach ($Tokens as $Token) {
|
foreach ($Tokens as $Token) {
|
||||||
$i = !$i;
|
$i = !$i;
|
||||||
list($TorrentID, $GroupID, $Time, $Expired, $Downloaded, $Uses, $Name, $Format, $Encoding) = $Token;
|
list($TorrentID, $GroupID, $Time, $Expired, $Downloaded, $Uses, $Name, $Format, $Encoding) = $Token;
|
||||||
|
if ($Name != '') {
|
||||||
$Name = "<a href=\"torrents.php?torrentid=$TorrentID\">$Name</a>";
|
$Name = "<a href=\"torrents.php?torrentid=$TorrentID\">$Name</a>";
|
||||||
|
} else {
|
||||||
|
$Name = "(<i>Deleted torrent <a href=\"log.php?search=Torrent+$TorrentID\">$TorrentID</a></i>)";
|
||||||
|
}
|
||||||
$ArtistName = Artists::display_artists($Artists[$GroupID]);
|
$ArtistName = Artists::display_artists($Artists[$GroupID]);
|
||||||
if ($ArtistName) {
|
if ($ArtistName) {
|
||||||
$Name = $ArtistName.$Name;
|
$Name = $ArtistName.$Name;
|
||||||
|
Loading…
Reference in New Issue
Block a user