ok, but I want to hook up a new sort of the result I get from the database. (so I dont want to change the way the results are sorted by the database)
my db-query looks something like this:
select a,b,c from threads where ... order by lastpost desc
I want to keep that sortorder, so that on each page I move through show me older posts as I go on.
but then on the listning (of that specific page) I want to order the results based on a new column that I have created in the database. This column tells if a thread is 'marked as solved' or not. I want to show booth the solved and not solved threads in the page as normal, but instead of just sorting it by lastpost desc, I want to sort it by solved, lastpost desc. So that the unsolved threads is shown first, and then the solved ones.
We did this modification without the plugin/hook-system (before 3.5) by modifying the forumdisplay.php, but now when we upgrade we need to convert this to plugin code, for easier upgrades of vbulletin.
|