Commish : I am working on my own thread saving hack at the moment. It is going to have pages (of course) and have a folder system where you can categorize your threads. It will also allow for you to sort the list via a few different criteria.
Here is my monster SQL statement at the moment (all I really have right now)
Code:
$q = $DB_site->query("SELECT title, favorites.userid, favorites.threadid, folder
FROM favorites,thread
LEFT JOIN favorites_folders ON (favorites.folderid = favorites_folders.folderid)
WHERE favorites.userid = $bbuserid AND thread.threadid = favorites.threadid
ORDER by folder,title");