checkUser('users_override_paranoia'); $DB->query(" SELECT `Username` FROM `users_main` WHERE `ID` = '$UserID' "); list($Username) = $DB->next_record(); View::show_header( 'Organize Bookmarks', 'browse,vendor/jquery.tablesorter.min,sort' ); $EditType = isset($_GET['type']) ? $_GET['type'] : 'torrents'; list(, $CollageDataList, $TorrentList) = Users::get_bookmarks($UserID); // todo: $TorrentList might not have the correct order, use the $GroupIDs instead $TT = new MASS_USER_TORRENTS_TABLE_VIEW($TorrentList, $CollageDataList, $EditType, 'Organize Torrent Bookmarks'); $TT->render_all(); View::show_footer();