MyBB Community Forums

Full Version: Plugin to mod the get daily search
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I did an extensive search to see if I could show the "getdaily" search option as posts instead of threads. Digging into the search.php file show this to be not possible without a plugin so I wrote one.

I hooked into the "search_do_search_process" hook. My plugin changes the $searcharray['resulttype'] to "posts". When I do this, the search fails to return anything and I'm not sure why. It works when $searcharray['resilttype'] is "threads", it only fails when I change it to "posts".

Am I misunderstanding how search works?  Any insight would be appreciated.

EDIT:
I answered my question by digging into the search.php source and creating a custom query.