So you put this in your googlesearch.php just under the global.php require line?:
Code:
if ($_REQUEST['source'] == 0)
{
$vbulletin->url = 'search.php?do=process&query=' . urlencode($_REQUEST['q']);
print_standard_redirect('', false);
}
If that's true, then temporarily change it to this:
Code:
if (1 || $_REQUEST['source'] == 0)
{
$vbulletin->url = 'search.php?do=process&query=' . urlencode($_REQUEST['q']);
print_standard_redirect('', false);
}
that should make it always go to your site search page.