1234567891011121314151617181920212223 |
- <?php
-
- require SERVER_ROOT.'/sections/torrents/functions.php';
-
- $GroupID = (int) $_GET['id'];
- if ($GroupID === 0) {
- error('Bad ID parameter', true);
- }
-
- $TorrentDetails = get_group_info($GroupID, true, 0, false);
- $TorrentDetails = $TorrentDetails[0];
- $Image = $TorrentDetails['WikiImage'];
-
- /*
- // Handle no artwork
- if (!$Image) {
- $Image = STATIC_SERVER.'common/noartwork/'.$CategoryIcons[$TorrentDetails['CategoryID'] - 1];
- }
- */
-
- json_die('success', array(
- 'picture' => $Image
- ));
|