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.

Extension Request

BentotBentot New
edited August 2006 in Vanilla 1.0 Help
Can someone create an extension so that we can see which discussion or thread an online member is currently reading?

Comments

  • I could easily show which one they last read, I think.

    The hard part is knowing if they still are in that page or if they moved to another page, or closed their browser.
  • Some forums like vbulletin show you that and the list of who's (members) viewing a thread. This would be cool.
  • Here is some SQL that prints a beautiful list of who last read what and when:SELECT MAX(LastViewed), LUM_Discussion.DiscussionID, LUM_User.UserID, LUM_User.Name, LUM_Discussion.Name FROM LUM_UserDiscussionWatch LEFT JOIN LUM_User ON (LUM_User.UserID = LUM_UserDiscussionWatch.UserID) LEFT JOIN LUM_Discussion ON (LUM_Discussion.DiscussionID = LUM_UserDiscussionWatch.DiscussionID) GROUP BY UserID
    Extension still to come.
This discussion has been closed.