Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Participated Discussions
I think it would be very useful to have an add on that enables you to see all discussions you've participated in. I really can't program that myself, so I'm just posting this here as an idea. I think this function would be handier than having to bookmark all discussions you want to keep a close watch to, and besides, that is a very good function in itself (and serves different purposes as well).
0
This discussion has been closed.
Comments
select whatever from LUM_Discussion where DiscussionID in ( select DiscussionID from LUM_Comment where AuthUserID = $YourUserID group by DiscussionID) limit 0, 30
select distinct c.DiscussionID, whatever else from LUM_Comment as c join LUM_Discussion as t on t.DiscussionID = c.DiscussionID where c.AuthUserID = $YourUserID limit 0, 30;