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 490B

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