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

12345678910111213141516171819202122
  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. if (!$Image) { // handle no artwork
  12. $Image = STATIC_SERVER.'common/noartwork/'.$CategoryIcons[$TorrentDetails['CategoryID'] - 1];
  13. }
  14. */
  15. json_die("success", array(
  16. 'wikiImage' => $Image
  17. ));