query("SELECT DATE_FORMAT(".$Month.",'%Y \ %m') AS Month, t.GroupID, t.Media, t.Format, t.Encoding, IF(t.RemasterYear=0,tg.Year,t.RemasterYear), tg.Name, t.Size, f.File FROM torrents as t JOIN torrents_group AS tg ON t.GroupID=tg.ID LEFT JOIN torrents_files AS f ON t.ID=f.TorrentID ".$SQL." GROUP BY t.ID"); $Downloads = $DB->to_array(false,MYSQLI_NUM,false); $Artists = get_artists($DB->collect('GroupID')); list($UserID, $Username) = array_values(user_info($UserID)); $Zip = new ZIP($Username.'\'s '.ucfirst($_GET['type'])); foreach($Downloads as $Download) { list($Month, $GroupID, $Media, $Format, $Encoding, $Year, $Album, $Size, $Contents) = $Download; $Artist = display_artists($Artists[$GroupID],false,true,false); $Contents = unserialize(base64_decode($Contents)); $Tor = new TORRENT($Contents, true); $Tor->set_announce_url(ANNOUNCE_URL.'/'.$LoggedUser['torrent_pass'].'/announce'); unset($Tor->Val['announce-list']); $TorrentName=''; $TorrentInfo=''; $TorrentName = $Artist; $TorrentName .= $Album; if ($Year>0) { $TorrentName.=' - '.$Year; } if ($Media!='') { $TorrentInfo.=$Media; } if ($Format!='') { if ($TorrentInfo!='') { $TorrentInfo.=' - '; } $TorrentInfo.=$Format; } if ($Encoding!='') { if ($TorrentInfo!='') { $TorrentInfo.=' - '; } $TorrentInfo.=$Encoding; } if ($TorrentInfo!='') { $TorrentName.=' ('.$TorrentInfo.')'; } if (!$TorrentName) { $TorrentName="No Name"; } $FileName = file_string($TorrentName); if ($Browser == 'Internet Explorer') { $FileName = urlencode($FileName); } $FileName .= '.torrent'; $Zip->add_file($Tor->enc(), file_string($Month).'/'.$FileName); } $Zip->close_stream(); define('IE_WORKAROUND_NO_CACHE_HEADERS', 1);