Empty commit

This commit is contained in:
Git 2012-02-18 08:00:22 +00:00
parent a8aaa81350
commit 30636f6b85

View File

@ -331,9 +331,10 @@
$CategoryName = $Categories[$CategoryID - 1]; $CategoryName = $Categories[$CategoryID - 1];
} }
$ArtistLink = ""; $JsonArtists = array();
if($CategoryName == "Music") { if($CategoryName == "Music") {
$ArtistLink = display_artists($ArtistForm, false, false); $ArtistForm = get_request_artists($RequestID);
$JsonArtists = array_values($ArtistForm);
} }
$Tags = $Request['Tags']; $Tags = $Request['Tags'];
@ -348,7 +349,7 @@
'bounty' => $RequestVotes['TotalBounty'], 'bounty' => $RequestVotes['TotalBounty'],
'categoryId' => (int) $CategoryID, 'categoryId' => (int) $CategoryID,
'categoryName' => $CategoryName, 'categoryName' => $CategoryName,
'artist' => $ArtistLink, 'artists' => $JsonArtists,
'title' => $Title, 'title' => $Title,
'year' => (int) $Year, 'year' => (int) $Year,
'image' => $Image, 'image' => $Image,