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
1c45369828
commit
45d2f8e28e
@ -1,5 +1,8 @@
|
||||
CHANGELOG
|
||||
|
||||
2013-09-22 by Ajax
|
||||
Show tags on collage and bookmark tooltips
|
||||
|
||||
2013-09-14 by Ajax
|
||||
Added date constrains to forum search
|
||||
|
||||
|
@ -49,7 +49,7 @@ function check_paranoia_here($Setting) {
|
||||
if (check_perms('site_view_torrent_snatchlist', $User['Class'])) {
|
||||
$CommStats['usnatched'] = number_format($UniqueSnatched);
|
||||
}
|
||||
if (check_paranoia_here('seeding') && check_paranoia_here('snatched') && $UniqueSnatched > 0) {
|
||||
if (check_paranoia_here('seeding+') && check_paranoia_here('snatched+') && $UniqueSnatched > 0) {
|
||||
$CommStats['seedingperc'] = 100 * min(1, round($Seeding / $UniqueSnatched, 2));
|
||||
}
|
||||
}
|
||||
|
@ -222,11 +222,12 @@ function compare($X, $Y) {
|
||||
if ($GroupYear > 0) {
|
||||
$DisplayName = "$DisplayName [$GroupYear]";
|
||||
}
|
||||
$Tags = display_str($TorrentTags->format());
|
||||
?>
|
||||
<li class="image_group_<?=$GroupID?>">
|
||||
<a href="torrents.php?id=<?=$GroupID?>" class="bookmark_<?=$GroupID?>">
|
||||
<? if ($WikiImage) { ?>
|
||||
<img src="<?=ImageTools::process($WikiImage, true)?>" alt="<?=$DisplayName?>" title="<?=$DisplayName?>" width="117" />
|
||||
<img class="tooltip_interactive" src="<?=ImageTools::process($WikiImage, true)?>" alt="<?=$DisplayName?>" title="<?=$DisplayName?> <br /> <?=$Tags?>" width="117" />
|
||||
<? } else { ?>
|
||||
<div style="width: 107px; padding: 5px;"><?=$DisplayName?></div>
|
||||
<? } ?>
|
||||
|
@ -54,7 +54,7 @@
|
||||
<li class="image_group_<?=$Artist['ArtistID']?>">
|
||||
<a href="artist.php?id=<?=$Artist['ArtistID']?>">
|
||||
<? if ($Artist['Image']) { ?>
|
||||
<img src="<?=ImageTools::process($Artist['Image'], true)?>" alt="<?=$Artist['Name']?>" title="<?=$Artist['Name']?>" width="118" />
|
||||
<img class="tooltip" src="<?=ImageTools::process($Artist['Image'], true)?>" alt="<?=$Artist['Name']?>" title="<?=$Artist['Name']?>" width="118" />
|
||||
<? } else { ?>
|
||||
<span style="width: 107px; padding: 5px;"><?=$Artist['Name']?></span>
|
||||
<? } ?>
|
||||
|
@ -234,12 +234,12 @@
|
||||
if ($GroupYear > 0) {
|
||||
$DisplayName = "$DisplayName [$GroupYear]";
|
||||
}
|
||||
$Tags = display_str($TorrentTags->format());
|
||||
?>
|
||||
<li class="image_group_<?=$GroupID?>">
|
||||
<a href="torrents.php?id=<?=$GroupID?>">
|
||||
<? if ($WikiImage) {
|
||||
?>
|
||||
<img src="<?=ImageTools::process($WikiImage, true)?>" alt="<?=$DisplayName?>" title="<?=$DisplayName?>" width="118" />
|
||||
<? if ($WikiImage) { ?>
|
||||
<img class="tooltip_interactive" src="<?=ImageTools::process($WikiImage, true)?>" alt="<?=$DisplayName?>" title="<?=$DisplayName?> <br /> <?=$Tags?>" width="118" />
|
||||
<? } else { ?>
|
||||
<span style="width: 107px; padding: 5px;"><?=$DisplayName?></span>
|
||||
<? } ?>
|
||||
|
Loading…
Reference in New Issue
Block a user