Don't reset search options when saving profile settings
Fix expression for cleaning up default search URL Fix typo preventing threads from being cached Don't include sticky post in reply count Cast RemasterYear to int because '0' != '' Don't compare escaped artist name to unescaped
@ -71,7 +71,7 @@ function check_paranoia($Property, $Paranoia, $UserClass, $UserID = false) {
|
|||||||
case 'snatched': case 'snatched+':
|
case 'snatched': case 'snatched+':
|
||||||
$May = $May || check_perms('site_view_torrent_snatchlist', $UserClass);
|
$May = $May || check_perms('site_view_torrent_snatchlist', $UserClass);
|
||||||
break;
|
break;
|
||||||
case 'uploading': case 'uploading+':
|
case 'uploads': case 'uploads+':
|
||||||
case 'seeding': case 'seeding+':
|
case 'seeding': case 'seeding+':
|
||||||
case 'leeching': case 'leeching+':
|
case 'leeching': case 'leeching+':
|
||||||
$May = $May || check_perms('users_view_seedleech', $UserClass);
|
$May = $May || check_perms('users_view_seedleech', $UserClass);
|
||||||
|
@ -372,7 +372,7 @@ function music_form($GenreTags) {
|
|||||||
</select>
|
</select>
|
||||||
<span id="other_bitrate_span"<? if(!$OtherBitrate) { echo ' class="hidden"'; } ?>>
|
<span id="other_bitrate_span"<? if(!$OtherBitrate) { echo ' class="hidden"'; } ?>>
|
||||||
<input type="text" name="other_bitrate" size="5" id="other_bitrate"<? if($OtherBitrate) { echo " value='".display_str($Torrent['Bitrate'])."'";} ?> onchange="AltBitrate()" />
|
<input type="text" name="other_bitrate" size="5" id="other_bitrate"<? if($OtherBitrate) { echo " value='".display_str($Torrent['Bitrate'])."'";} ?> onchange="AltBitrate()" />
|
||||||
<input type="checkbox" id="vbr" name="vbr"<? if(isset($VBR)) { echo ' checked="checked"'; } ?> /> (VBR)
|
<input type="checkbox" id="vbr" name="vbr"<? if(isset($VBR)) { echo ' checked="checked"'; } ?> /><label for="vbr"> (VBR)</label>
|
||||||
</span>
|
</span>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
@ -572,14 +572,19 @@ function audiobook_form() {
|
|||||||
<td>
|
<td>
|
||||||
<select id="bitrate" name="bitrate" onchange="Bitrate()">
|
<select id="bitrate" name="bitrate" onchange="Bitrate()">
|
||||||
<option value="">---</option>
|
<option value="">---</option>
|
||||||
<? if($Torrent['Bitrate'] && !in_array($Torrent['Bitrate'], $this->Bitrates)) {
|
<?
|
||||||
|
if($Torrent['Bitrate'] && !in_array($Torrent['Bitrate'], $this->Bitrates)) {
|
||||||
$OtherBitrate = true;
|
$OtherBitrate = true;
|
||||||
|
if(substr($Torrent['Bitrate'], strlen($Torrent['Bitrate']) - strlen(" (VBR)")) == " (VBR)") {
|
||||||
|
$Torrent['Bitrate'] = substr($Torrent['Bitrate'], 0, strlen($Torrent['Bitrate'])-6);
|
||||||
|
$VBR = true;
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
$OtherBitrate = false;
|
$OtherBitrate = false;
|
||||||
}
|
}
|
||||||
foreach(display_array($this->Bitrates) as $Bitrate) {
|
foreach(display_array($this->Bitrates) as $Bitrate) {
|
||||||
echo "<option value='$Bitrate'";
|
echo "<option value='$Bitrate'";
|
||||||
if($Bitrate == $Torrent['Bitrate']) {
|
if($Bitrate == $Torrent['Bitrate'] || (!$OtherBitrate || $Bitrate == "Other")) {
|
||||||
echo " selected='selected'";
|
echo " selected='selected'";
|
||||||
}
|
}
|
||||||
echo ">";
|
echo ">";
|
||||||
@ -589,10 +594,8 @@ function audiobook_form() {
|
|||||||
?>
|
?>
|
||||||
</select>
|
</select>
|
||||||
<span id="other_bitrate_span"<? if(!$OtherBitrate) { echo ' class="hidden"'; } ?> >
|
<span id="other_bitrate_span"<? if(!$OtherBitrate) { echo ' class="hidden"'; } ?> >
|
||||||
<input type="text" name="other_bitrate" size="5" id="other_bitrate"<? if($OtherBitrate) { echo " value='".display_str($Torrent['Encoding'])."'";} ?> onchange="AltBitrate()" />
|
<input type="text" name="other_bitrate" size="5" id="other_bitrate"<? if($OtherBitrate) { echo " value='".display_str($Torrent['Bitrate'])."'";} ?> onchange="AltBitrate()" />
|
||||||
<? if($this->NewTorrent) { ?>
|
<input type="checkbox" id="vbr" name="vbr"<? if(isset($VBR)) { echo ' checked="checked"'; } ?> /><label for="vbr"> (VBR)</label>
|
||||||
<input type="checkbox" id="vbr" name="vbr" /> (VBR)
|
|
||||||
<? } ?>
|
|
||||||
</span>
|
</span>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -393,7 +393,7 @@ function site_ban_ip($IP) {
|
|||||||
if(!is_array($IPBans)) {
|
if(!is_array($IPBans)) {
|
||||||
//Cache lock!
|
//Cache lock!
|
||||||
$Lock = $Cache->get_value('ip_bans_lock');
|
$Lock = $Cache->get_value('ip_bans_lock');
|
||||||
if($Lock) {
|
if($Lock && substr($_SERVER['REQUEST_URI'], 0, 29) != '/torrents.php?action=download') {
|
||||||
?><script type="script/javascript">setTimeout('window.location="http://<?=NONSSL_SITE_URL?><?=$_SERVER['REQUEST_URI']?>"', 5)</script><?
|
?><script type="script/javascript">setTimeout('window.location="http://<?=NONSSL_SITE_URL?><?=$_SERVER['REQUEST_URI']?>"', 5)</script><?
|
||||||
} else {
|
} else {
|
||||||
$Cache->cache_value('ip_bans_lock', '1', 10);
|
$Cache->cache_value('ip_bans_lock', '1', 10);
|
||||||
|
@ -332,12 +332,12 @@ function compare($X, $Y){
|
|||||||
<? }
|
<? }
|
||||||
|
|
||||||
if (check_perms('site_torrents_notify')) {
|
if (check_perms('site_torrents_notify')) {
|
||||||
if (($Notify = $Cache->get_value('notify_artists_'.$LoggedUser['ID'])) === FALSE) {
|
if (($Notify = $Cache->get_value('notify_artists_'.$LoggedUser['ID'])) === false) {
|
||||||
$DB->query("SELECT ID, Artists FROM users_notify_filters WHERE UserID='$LoggedUser[ID]' AND Label='Artist notifications' LIMIT 1");
|
$DB->query("SELECT ID, Artists FROM users_notify_filters WHERE UserID='$LoggedUser[ID]' AND Label='Artist notifications' LIMIT 1");
|
||||||
$Notify = $DB->next_record(MYSQLI_ASSOC);
|
$Notify = $DB->next_record(MYSQLI_ASSOC, false);
|
||||||
$Cache->cache_value('notify_artists_'.$LoggedUser['ID'], $Notify, 0);
|
$Cache->cache_value('notify_artists_'.$LoggedUser['ID'], $Notify, 0);
|
||||||
}
|
}
|
||||||
if (stripos($Notify['Artists'], '|'.$Name.'|') === FALSE) {
|
if (stripos($Notify['Artists'], '|'.$Name.'|') === false) {
|
||||||
?>
|
?>
|
||||||
<a href="artist.php?action=notify&artistid=<?=$ArtistID?>&auth=<?=$LoggedUser['AuthKey']?>">[Notify of new uploads]</a>
|
<a href="artist.php?action=notify&artistid=<?=$ArtistID?>&auth=<?=$LoggedUser['AuthKey']?>">[Notify of new uploads]</a>
|
||||||
<?
|
<?
|
||||||
|
@ -19,6 +19,7 @@ function get_thread_info($ThreadID, $Return = true, $SelectiveCache = false) {
|
|||||||
if($DB->record_count()==0) { error(404); }
|
if($DB->record_count()==0) { error(404); }
|
||||||
$ThreadInfo = $DB->next_record(MYSQLI_ASSOC);
|
$ThreadInfo = $DB->next_record(MYSQLI_ASSOC);
|
||||||
if($ThreadInfo['StickyPostID']) {
|
if($ThreadInfo['StickyPostID']) {
|
||||||
|
$ThreadInfo['Posts']--;
|
||||||
$DB->query("SELECT
|
$DB->query("SELECT
|
||||||
p.ID,
|
p.ID,
|
||||||
p.AuthorID,
|
p.AuthorID,
|
||||||
@ -32,8 +33,8 @@ function get_thread_info($ThreadID, $Return = true, $SelectiveCache = false) {
|
|||||||
WHERE p.TopicID = '$ThreadID' AND p.ID = '".$ThreadInfo['StickyPostID']."'");
|
WHERE p.TopicID = '$ThreadID' AND p.ID = '".$ThreadInfo['StickyPostID']."'");
|
||||||
list($ThreadInfo['StickyPost']) = $DB->to_array(false, MYSQLI_ASSOC);
|
list($ThreadInfo['StickyPost']) = $DB->to_array(false, MYSQLI_ASSOC);
|
||||||
}
|
}
|
||||||
if(!$SelectiveCache || (!$ThreadInfo['IsLocked'] || $ThreadInfo['IsSticky'])) {
|
if(!$SelectiveCache || !$ThreadInfo['IsLocked'] || $ThreadInfo['IsSticky']) {
|
||||||
$Cache->cache_value('thread_'.$TheadID.'_info', $ThreadInfo, 0);
|
$Cache->cache_value('thread_'.$ThreadID.'_info', $ThreadInfo, 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if($Return) {
|
if($Return) {
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
<?
|
<?
|
||||||
authorize();
|
authorize();
|
||||||
|
include(SERVER_ROOT.'/sections/forums/functions.php');
|
||||||
|
|
||||||
//TODO: Remove all the stupid queries that could get their information just as easily from the cache
|
//TODO: Remove all the stupid queries that could get their information just as easily from the cache
|
||||||
/*********************************************************************\
|
/*********************************************************************\
|
||||||
@ -47,24 +48,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
$TopicID = $_POST['thread'];
|
$TopicID = $_POST['thread'];
|
||||||
if(!$ThreadInfo = $Cache->get_value('thread_'.$TopicID.'_info')) {
|
$ThreadInfo = get_thread_info($TopicID);
|
||||||
$DB->query("SELECT
|
|
||||||
t.Title,
|
|
||||||
t.ForumID,
|
|
||||||
t.IsLocked,
|
|
||||||
t.IsSticky,
|
|
||||||
COUNT(fp.id) AS Posts,
|
|
||||||
t.LastPostAuthorID,
|
|
||||||
ISNULL(p.TopicID) AS NoPoll
|
|
||||||
FROM forums_topics AS t
|
|
||||||
JOIN forums_posts AS fp ON fp.TopicID = t.ID
|
|
||||||
LEFT JOIN forums_polls AS p ON p.TopicID=t.ID
|
|
||||||
WHERE t.ID = '$TopicID'
|
|
||||||
GROUP BY fp.TopicID");
|
|
||||||
if($DB->record_count()==0) { error(404); }
|
|
||||||
$ThreadInfo = $DB->next_record(MYSQLI_ASSOC, false);
|
|
||||||
$Cache->cache_value('thread_'.$TopicID.'_info', $ThreadInfo, 0);
|
|
||||||
}
|
|
||||||
$ForumID = $ThreadInfo['ForumID'];
|
$ForumID = $ThreadInfo['ForumID'];
|
||||||
|
|
||||||
if($LoggedUser['Class'] < $Forums[$ForumID]['MinClassRead'] || !$ForumID) { error(403); }
|
if($LoggedUser['Class'] < $Forums[$ForumID]['MinClassRead'] || !$ForumID) { error(403); }
|
||||||
|
@ -332,7 +332,7 @@
|
|||||||
<table class="forum_post box vertical_margin<? if (((!$ThreadInfo['IsLocked'] || $ThreadInfo['IsSticky']) && $PostID>$LastRead && strtotime($AddedTime)>$LoggedUser['CatchupTime']) || (isset($RequestKey) && $Key==$RequestKey)) { echo ' forum_unread'; } if($HeavyInfo['DisableAvatars']) { echo ' noavatar'; } ?>" id="post<?=$PostID?>">
|
<table class="forum_post box vertical_margin<? if (((!$ThreadInfo['IsLocked'] || $ThreadInfo['IsSticky']) && $PostID>$LastRead && strtotime($AddedTime)>$LoggedUser['CatchupTime']) || (isset($RequestKey) && $Key==$RequestKey)) { echo ' forum_unread'; } if($HeavyInfo['DisableAvatars']) { echo ' noavatar'; } ?>" id="post<?=$PostID?>">
|
||||||
<tr class="colhead_dark">
|
<tr class="colhead_dark">
|
||||||
<td colspan="2">
|
<td colspan="2">
|
||||||
<span style="float:left;"><a class="post_id" href='forums.php?action=viewthread&threadid=<?=$ThreadID?>&post=<?=($CatalogueID*THREAD_CATALOGUE)+($Key+1)?>#post<?=$PostID?>'>#<?=$PostID?></a>
|
<span style="float:left;"><a class="post_id" href='forums.php?action=viewthread&threadid=<?=$ThreadID?>&postid=<?=$PostID?>#post<?=$PostID?>'>#<?=$PostID?></a>
|
||||||
<strong><?=format_username($AuthorID, $Username, $Donor, $Warned, $Enabled == 2 ? false : true, $PermissionID)?></strong>
|
<strong><?=format_username($AuthorID, $Username, $Donor, $Warned, $Enabled == 2 ? false : true, $PermissionID)?></strong>
|
||||||
<span class="user_title"><?=!empty($UserTitle) ? '('.$UserTitle.')' : '' ?></span>
|
<span class="user_title"><?=!empty($UserTitle) ? '('.$UserTitle.')' : '' ?></span>
|
||||||
<?=time_diff($AddedTime,2)?>
|
<?=time_diff($AddedTime,2)?>
|
||||||
|
@ -55,26 +55,26 @@ function header_link($SortKey,$DefaultWay="desc") {
|
|||||||
|
|
||||||
// Setting default search options
|
// Setting default search options
|
||||||
if(!empty($_GET['setdefault'])) {
|
if(!empty($_GET['setdefault'])) {
|
||||||
$UnsetList[]='/(&?page\=.+?&?)/i';
|
$UnsetList = array('page','setdefault');
|
||||||
$UnsetList[]='/(&?setdefault\=.+?&?)/i';
|
$UnsetRegexp = '/(&|^)('.implode('|',$UnsetList).')=.*?(&|$)/i';
|
||||||
|
|
||||||
$DB->query("SELECT SiteOptions FROM users_info WHERE UserID='".db_string($LoggedUser['ID'])."'");
|
$DB->query("SELECT SiteOptions FROM users_info WHERE UserID='".db_string($LoggedUser['ID'])."'");
|
||||||
list($SiteOptions)=$DB->next_record(MYSQLI_NUM, true);
|
list($SiteOptions)=$DB->next_record(MYSQLI_NUM, false);
|
||||||
if(!empty($SiteOptions)) {
|
if(!empty($SiteOptions)) {
|
||||||
$SiteOptions = unserialize($SiteOptions);
|
$SiteOptions = unserialize($SiteOptions);
|
||||||
} else {
|
} else {
|
||||||
$SiteOptions = array();
|
$SiteOptions = array();
|
||||||
}
|
}
|
||||||
$SiteOptions['DefaultSearch']=preg_replace($UnsetList,'',$_SERVER['QUERY_STRING']);
|
$SiteOptions['DefaultSearch'] = preg_replace($UnsetRegexp,'',$_SERVER['QUERY_STRING']);
|
||||||
$DB->query("UPDATE users_info SET SiteOptions='".db_string(serialize($SiteOptions))."' WHERE UserID='".db_string($LoggedUser['ID'])."'");
|
$DB->query("UPDATE users_info SET SiteOptions='".db_string(serialize($SiteOptions))."' WHERE UserID='".db_string($LoggedUser['ID'])."'");
|
||||||
$Cache->begin_transaction('user_info_heavy_'.$UserID);
|
$Cache->begin_transaction('user_info_heavy_'.$UserID);
|
||||||
$Cache->update_row(false, array('DefaultSearch'=>preg_replace($UnsetList,'',$_SERVER['QUERY_STRING'])));
|
$Cache->update_row(false, array('DefaultSearch'=>$SiteOptions['DefaultSearch']));
|
||||||
$Cache->commit_transaction(0);
|
$Cache->commit_transaction(0);
|
||||||
|
|
||||||
// Clearing default search options
|
// Clearing default search options
|
||||||
} elseif(!empty($_GET['cleardefault'])) {
|
} elseif(!empty($_GET['cleardefault'])) {
|
||||||
$DB->query("SELECT SiteOptions FROM users_info WHERE UserID='".db_string($LoggedUser['ID'])."'");
|
$DB->query("SELECT SiteOptions FROM users_info WHERE UserID='".db_string($LoggedUser['ID'])."'");
|
||||||
list($SiteOptions)=$DB->next_record(MYSQLI_NUM, true);
|
list($SiteOptions)=$DB->next_record(MYSQLI_NUM, false);
|
||||||
$SiteOptions=unserialize($SiteOptions);
|
$SiteOptions=unserialize($SiteOptions);
|
||||||
$SiteOptions['DefaultSearch']='';
|
$SiteOptions['DefaultSearch']='';
|
||||||
$DB->query("UPDATE users_info SET SiteOptions='".db_string(serialize($SiteOptions))."' WHERE UserID='".db_string($LoggedUser['ID'])."'");
|
$DB->query("UPDATE users_info SET SiteOptions='".db_string(serialize($SiteOptions))."' WHERE UserID='".db_string($LoggedUser['ID'])."'");
|
||||||
|
@ -149,9 +149,9 @@
|
|||||||
|
|
||||||
case 'Audiobooks':
|
case 'Audiobooks':
|
||||||
case 'Comedy':
|
case 'Comedy':
|
||||||
$Validate->SetFields('title',
|
/*$Validate->SetFields('title',
|
||||||
'1','string','Title must be between 2 and 300 characters.',array('maxlength'=>300, 'minlength'=>2));
|
'1','string','Title must be between 2 and 300 characters.',array('maxlength'=>300, 'minlength'=>2));
|
||||||
|
^ this is commented out because there is no title field on these pages*/
|
||||||
$Validate->SetFields('year',
|
$Validate->SetFields('year',
|
||||||
'1','number','The year of the release must be entered.');
|
'1','number','The year of the release must be entered.');
|
||||||
|
|
||||||
|
@ -110,7 +110,7 @@ function header_link($SortKey,$DefaultWay="DESC") {
|
|||||||
}
|
}
|
||||||
|
|
||||||
$User = user_info($UserID);
|
$User = user_info($UserID);
|
||||||
$Perms = get_permissions($UserInfo['PermissionID']);
|
$Perms = get_permissions($User['PermissionID']);
|
||||||
$UserClass = $Perms['Class'];
|
$UserClass = $Perms['Class'];
|
||||||
|
|
||||||
switch($_GET['type']) {
|
switch($_GET['type']) {
|
||||||
@ -136,7 +136,7 @@ function header_link($SortKey,$DefaultWay="DESC") {
|
|||||||
$From = "xbt_files_users AS xfu JOIN torrents AS t ON t.ID=xfu.fid";
|
$From = "xbt_files_users AS xfu JOIN torrents AS t ON t.ID=xfu.fid";
|
||||||
break;
|
break;
|
||||||
case 'uploaded':
|
case 'uploaded':
|
||||||
if (!check_paranoia('uploads', $User['Paranoia'], $UserClass, $UserID)) { error(403); }
|
if ((empty($_GET['filter']) || $_GET['filter'] != 'perfectflac') && !check_paranoia('uploads', $User['Paranoia'], $UserClass, $UserID)) { error(403); }
|
||||||
$Time = 'unix_timestamp(t.Time)';
|
$Time = 'unix_timestamp(t.Time)';
|
||||||
$UserField = 't.UserID';
|
$UserField = 't.UserID';
|
||||||
$ExtraWhere = 'AND flags!=1';
|
$ExtraWhere = 'AND flags!=1';
|
||||||
@ -153,7 +153,7 @@ function header_link($SortKey,$DefaultWay="DESC") {
|
|||||||
error(404);
|
error(404);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!empty($_GET['filter']) && (($_GET['filter'] == "perfectflac") || ($_GET['filter'] == "uniquegroup"))) {
|
if(!empty($_GET['filter'])) {
|
||||||
if($_GET['filter'] == "perfectflac") {
|
if($_GET['filter'] == "perfectflac") {
|
||||||
if (!check_paranoia('perfectflacs', $User['Paranoia'], $UserClass, $UserID)) { error(403); }
|
if (!check_paranoia('perfectflacs', $User['Paranoia'], $UserClass, $UserID)) { error(403); }
|
||||||
$ExtraWhere .= " AND t.Format = 'FLAC'";
|
$ExtraWhere .= " AND t.Format = 'FLAC'";
|
||||||
|
@ -736,7 +736,7 @@
|
|||||||
foreach($GroupInfo[1] as $TorrentInfo) {
|
foreach($GroupInfo[1] as $TorrentInfo) {
|
||||||
if (($TorrentInfo['Media'] == $ThisMedia)
|
if (($TorrentInfo['Media'] == $ThisMedia)
|
||||||
&& ($TorrentInfo['Remastered'] == $ThisRemastered)
|
&& ($TorrentInfo['Remastered'] == $ThisRemastered)
|
||||||
&& ($TorrentInfo['RemasterYear'] == $ThisRemasterYear)
|
&& ($TorrentInfo['RemasterYear'] == (int)$ThisRemasterYear)
|
||||||
&& ($TorrentInfo['RemasterTitle'] == $ThisRemasterTitle)
|
&& ($TorrentInfo['RemasterTitle'] == $ThisRemasterTitle)
|
||||||
&& ($TorrentInfo['RemasterRecordLabel'] == $ThisRemasterRecordLabel)
|
&& ($TorrentInfo['RemasterRecordLabel'] == $ThisRemasterRecordLabel)
|
||||||
&& ($TorrentInfo['RemasterCatalogueNumber'] == $ThisRemasterCatalogueNumber)
|
&& ($TorrentInfo['RemasterCatalogueNumber'] == $ThisRemasterCatalogueNumber)
|
||||||
|
@ -177,6 +177,9 @@
|
|||||||
die();
|
die();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(!empty($LoggedUser['DefaultSearch'])) {
|
||||||
|
$Options['DefaultSearch'] = $LoggedUser['DefaultSearch'];
|
||||||
|
}
|
||||||
$Options['DisableGrouping'] = (!empty($_POST['disablegrouping']) ? 1 : 0);
|
$Options['DisableGrouping'] = (!empty($_POST['disablegrouping']) ? 1 : 0);
|
||||||
$Options['TorrentGrouping'] = (!empty($_POST['torrentgrouping']) ? 1 : 0);
|
$Options['TorrentGrouping'] = (!empty($_POST['torrentgrouping']) ? 1 : 0);
|
||||||
$Options['DiscogView'] = (!empty($_POST['discogview']) ? 1 : 0);
|
$Options['DiscogView'] = (!empty($_POST['discogview']) ? 1 : 0);
|
||||||
|
@ -5,7 +5,11 @@ function Categories() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function Remaster() {
|
function Remaster() {
|
||||||
$('#remaster_true').toggle();
|
if($('#remaster').raw().checked) {
|
||||||
|
$('#remaster_true').show();
|
||||||
|
} else {
|
||||||
|
$('#remaster_true').hide();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function Format() {
|
function Format() {
|
||||||
|
BIN
static/styles/white.cd/images/go_last_read.png
Normal file
After Width: | Height: | Size: 162 B |
BIN
static/styles/white.cd/images/header.png
Normal file
After Width: | Height: | Size: 181 B |
BIN
static/styles/white.cd/images/icons.png
Normal file
After Width: | Height: | Size: 784 B |
BIN
static/styles/white.cd/images/leechers.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
static/styles/white.cd/images/logo.png
Normal file
After Width: | Height: | Size: 923 B |
BIN
static/styles/white.cd/images/seeders.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
static/styles/white.cd/images/snatched.png
Normal file
After Width: | Height: | Size: 2.9 KiB |