mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-12 18:36:29 +00:00
Empty commit
This commit is contained in:
parent
a5ebb19157
commit
457abfb8ce
@ -173,7 +173,7 @@ function generate_torrent_json($Caption, $Tag, $Details, $Limit) {
|
||||
'groupId' => (int)$GroupID,
|
||||
'artist' => $TruncArtist,
|
||||
'groupName' => $GroupName,
|
||||
'groupCategory' => (int)$GroupCategory,
|
||||
'groupCategory' => (int)$GroupCategoryID,
|
||||
'groupYear' => (int)$GroupYear,
|
||||
'remasterTitle' => $RemasterTitle,
|
||||
'format' => $Format,
|
||||
@ -189,6 +189,8 @@ function generate_torrent_json($Caption, $Tag, $Details, $Limit) {
|
||||
'leechers' => (int)$Leechers,
|
||||
'data' => (int)$Data,
|
||||
'size' => (int)$Size,
|
||||
'wikiImage' => $WikiImage,
|
||||
'releaseType' => $ReleaseType,
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -62,6 +62,8 @@
|
||||
$JsonMusicInfo = null;
|
||||
}
|
||||
|
||||
$TagList = explode('|', $TorrentDetails['GROUP_CONCAT(DISTINCT tags.Name SEPARATOR \'|\')']);
|
||||
|
||||
$JsonTorrentDetails = array(
|
||||
'wikiBody' => Text::full_format($TorrentDetails['WikiBody']),
|
||||
'wikiImage' => $TorrentDetails['WikiImage'],
|
||||
@ -76,7 +78,8 @@
|
||||
'time' => $TorrentDetails['Time'],
|
||||
'vanityHouse' => $TorrentDetails['VanityHouse'] == 1,
|
||||
'isBookmarked' => Bookmarks::has_bookmarked('torrent', $GroupID),
|
||||
'musicInfo' => $JsonMusicInfo
|
||||
'musicInfo' => $JsonMusicInfo,
|
||||
'tags' => $TagList
|
||||
);
|
||||
|
||||
$Torrent = $TorrentList[$TorrentID];
|
||||
|
@ -56,6 +56,8 @@
|
||||
$JsonMusicInfo = null;
|
||||
}
|
||||
|
||||
$TagList = explode('|', $TorrentDetails['GROUP_CONCAT(DISTINCT tags.Name SEPARATOR \'|\')']);
|
||||
|
||||
$JsonTorrentDetails = array(
|
||||
'wikiBody' => Text::full_format($TorrentDetails['WikiBody']),
|
||||
'wikiImage' => $TorrentDetails['WikiImage'],
|
||||
@ -70,7 +72,8 @@
|
||||
'time' => $TorrentDetails['Time'],
|
||||
'vanityHouse' => ($TorrentDetails['VanityHouse'] == 1),
|
||||
'isBookmarked' => Bookmarks::has_bookmarked('torrent', $GroupID),
|
||||
'musicInfo' => $JsonMusicInfo
|
||||
'musicInfo' => $JsonMusicInfo,
|
||||
'tags' => $TagList
|
||||
);
|
||||
|
||||
$JsonTorrentList = array();
|
||||
|
Loading…
Reference in New Issue
Block a user