*lazy coder*
Since I'm too lazy to do it, I'll tell you how to figure out how to do it ^.~
Okay, um, if I weren't lazy, I'd go into PHPMyAdmin to check the DB for a boolean flag that triggers closed-ness.
Then I'd look for the function that outputs threads and modify the SQL query to exclude closed threads.
Then I'd copy and paste and modify the SQL query to explicitly get closed threads.
Remember that it shouldn't be hard to figure out! Programming is in english.
Something like:
Code:
SELECT * FROM thread_table WHERE closed = false; // part 1
SELECT * FROM thread_table WHERE closed = true; // part 2
Just keep in mind that.. although a simple concept you have to identify the fieldname, and filter through the fifty zillion other fields that vB also calls <.< Even then, it's not hard, so go have fun! I expect you to figure it out in no less than an hour