BioTorrents.de’s version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

torrentgroupalbumart.php 468B

12345678910111213141516171819202122
  1. <?php
  2. declare(strict_types=1);
  3. require SERVER_ROOT.'/sections/torrents/functions.php';
  4. $GroupID = (int) $_GET['id'];
  5. if ($GroupID === 0) {
  6. error('Bad ID parameter', true);
  7. }
  8. $TorrentDetails = get_group_info($GroupID, true, 0, false);
  9. $TorrentDetails = $TorrentDetails[0];
  10. $Image = $TorrentDetails['WikiImage'];
  11. // Handle no artwork
  12. if (!$Image) {
  13. $Image = STATIC_SERVER.'common/noartwork/music.png';
  14. }
  15. json_die('success', array(
  16. 'picture' => $Image
  17. ));