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