OK I've managed to find a solution to this.
By default, every search is handled and gives results using the posts list
no matter what you put in the search_result variable. Thanks to FB-ke (the author of Buddylist & phpBB easyCMS) for the following
mini-mod.
#
# OPEN
#
search.php
#
# FIND
#
$show_results = ( isset($HTTP_POST_VARS['show_results']) ) ? $HTTP_POST_VARS['show_results'] : 'posts';
#
# REPLACE WITH
#
$show_results = ( isset($HTTP_POST_VARS['show_results']) ) ? $HTTP_POST_VARS['show_results'] : (( isset($HTTP_GET_VARS['show_results']) ) ? $HTTP_GET_VARS['show_results'] : 'posts');
Now when you use search.php?search_author=*&show_results=topics
it'll show the all topics in one unified forum
