summaryrefslogtreecommitdiff
path: root/lib/VNDB/DB/Discussions.pm
AgeCommit message (Collapse)AuthorFilesLines
2010-01-26Made a start on the notification systemYorhel1-11/+1
The current setup should be able to handle all kinds of notifications, though only PMs are implemented at this point. More to come.
2010-01-11Fixed sorting bug on /u+/postsYorhel1-3/+8
Damn, so many bugs... This one was introduced in 9613533da2c58af3c64e3bd4ed7b92b22ffd442f
2009-11-27DB: Abstracted all ORDER BY clauses in the DB abstraction layerYorhel1-7/+11
The ORDER BY was previously specified using an 'order' argument, which would then be directly inserted into the query. The new method is the same as what I used for the public API: two 'sort' and 'reverse' arguments. This should be less error-prone and more readable. This changes quite a lot of code, so I hope I haven't forgotten to update something along the way.
2009-10-10Display number of unread posts in user menuYorhel1-1/+11
Instead of displaying the total number of threads. Posts are marked as read when the thread is opened.
2009-08-08Converted threads_posts.date and edited to timestamptzYorhel1-5/+5
Everything still seems to be working fine so far.
2009-08-06More logical naming of dbGetPost date filter3dB1-3/+3
2009-08-05Removed unnecessary export.3dB1-1/+1
-- Removed unneeded export of previously deleted subroutine dbPostCheckDouble
2009-08-05Reworked double post checking to use existing code3dB1-21/+3
-- Removed dbPostCheckDouble -- Added more filters to dbPostGet to serve similar purpose
2009-08-04Implemented double-post prevention3dB1-1/+21
-- Created a subroutine to check for any recent posts made by a user -- Added double-post checking and error messages to the form handler & html generator
2009-07-07Posts browser on user pages (/u+/posts)Yorhel1-6/+26
2009-07-07Hide threads targeted at users from the main pageYorhel1-1/+3
2009-03-22Merge branch 'tagging' into betaYorhel1-29/+29
Conflicts: lib/VNDB/DB/Discussions.pm util/updates/update_2.3.sql
2009-03-21Replacing all occurences of 'discussion tags' with 'discussion boards'Yorhel1-27/+27
Which is a more accurate description, and doesn't confuse with the tagging system. Note than even all internal uses of the word 'tag' have been replaced, as I'm not a huge fan of different terminology in the code and UI. This update might break some things related to the discussion board.
2009-02-18Don't count deleted threads on number of threads on item pagesYorhel1-2/+4
2008-12-09Code cleanup: removed leading spaces and combined ↵Yorhel1-2/+2
DB/{Votes,VNList,WishList}.pm into ULists.pm
2008-11-16Added number of threads to discussion tabYorhel1-1/+13
2008-11-16Tiny bugfix with thread creationYorhel1-1/+2
2008-11-16Added reply/post edit/new thread functionalityYorhel1-1/+91
Most of the code, or at least the design, was stolen from 1.X, as those functions were fine. Links to these forms is still pending...
2008-11-15Browsing threads on tags now worksYorhel1-6/+34
2008-11-15Added tag listing to thread pagesYorhel1-2/+32
Not sure about the style, but at least it works. Thread page is now pretty much finished as well, yay!
2008-11-15Made a start with the thread pages + layoutYorhel1-0/+60