Love this mod! I'm trying to futz with the last search in the modification in this thread, showing all unanswered threads (which works great as is).
What I want is all unanswered threads in all forums except for forum #17, but I just can't seem to add the forumchoice parameter correctly. Any vb search gurus able to help a guy out? here is the existing code:
Code:
<tr><td class="vbmenu_option"><a href="search.php?$session[sessionurl]do=process&replyless=1&replylimit=0&dontcache=1">Get Unanswered Posts</a></td></tr>
What I have tried is this:
Code:
<tr><td class="vbmenu_option"><a href="search.php?$session[sessionurl]do=process&replyless=1&replylimit=0&forumchoice=[2,3,4]&dontcache=1">Get Unanswered Posts</a></td></tr>
I was going to add all forums but #17, but the search.php seems to not use the forumchoice parameter.
OK, found it. This appears to be working:
Code:
<tr><td class="vbmenu_option"><a href="search.php?$session[sessionurl]do=process&replyless=1&replylimit=0&forumchoice[]=2&forumchoice[]=4&forumchoice[]=5&forumchoice[]=6&forumchoice[]=7&forumchoice[]=9&forumchoice[]=10&forumchoice[]=11&forumchoice[]=19&forumchoice[]=23&forumchoice[]=24&dontcache=1">Get Unanswered Posts</a></td></tr>