query("SELECT UserID FROM $Table WHERE UserID='$LoggedUser[ID]' AND $Col='".db_string($_GET['id'])."'"); if($DB->record_count() == 0) { $DB->query("INSERT IGNORE INTO $Table (UserID, $Col, Time) VALUES ('$LoggedUser[ID]', '".db_string($_GET['id'])."', '".sqltime()."')"); $Cache->delete_value('bookmarks_'.$Type.'_'.$LoggedUser['ID']); if ($Type == 'torrent') { $Cache->delete_value('bookmarks_torrent_'.$LoggedUser['ID'].'_full'); $GroupID = $_GET['id']; $DB->query("SELECT Name, Year, WikiBody, TagList FROM torrents_group WHERE ID = '$GroupID'"); list($GroupTitle, $Year, $Body, $TagList) = $DB->next_record(); $TagList = str_replace('_','.',$TagList); $DB->query("SELECT ID, Format, Encoding, HasLog, HasCue, LogScore, Media, Scene, FreeTorrent, UserID FROM torrents WHERE GroupID = '$GroupID'"); // RSS feed stuff while ($Torrent = $DB->next_record()) { $Title = $GroupTitle; list($TorrentID, $Format, $Bitrate, $HasLog, $HasCue, $LogScore, $Media, $Scene, $Freeleech, $UploaderID) = $Torrent; $Title .= " [".$Year."] - "; $Title .= $Format." / ".$Bitrate; if ($HasLog == "'1'") { $Title .= " / Log"; } if ($HasLog) { $Title .= " / ".$LogScore.'%'; } if ($HasCue == "'1'") { $Title .= " / Cue"; } $Title .= " / ".trim($Media); if ($Scene == "1") { $Title .= " / Scene"; } if ($Freeleech == "1") { $Title .= " / Freeleech!"; } if ($Freeleech == "2") { $Title .= " / Neutral leech!"; } $UploaderInfo = user_info($UploaderID); $Item = $Feed->item($Title, $Text->strip_bbcode($Body), 'torrents.php?action=download&authkey=[[AUTHKEY]]&torrent_pass=[[PASSKEY]]&id='.$TorrentID, $UploaderInfo['Username'], 'torrents.php?id='.$GroupID, trim($TagList)); $Feed->populate('torrents_bookmarks_t_'.$LoggedUser['torrent_pass'], $Item); } } elseif ($Type == 'request') { $DB->query("SELECT UserID FROM $Table WHERE $Col='".db_string($_GET['id'])."'"); $Bookmarkers = $DB->collect('UserID'); $SS->UpdateAttributes('requests requests_delta', array('bookmarker'), array($_GET['id'] => array($Bookmarkers)), true); } } ?>