Quote:
Originally Posted by H3C x Nevz
I am not extremely experienced in PHP, and I really can't seem to find the correct variable or how to format it correctly... sorry...
|
You are interested in do=finduser, so open search.php and you'll find this line about that:
PHP Code:
if ($_REQUEST['do'] == 'finduser')
Under that is the section that deals with that do variable. Right under there is this:
PHP Code:
$vbulletin->input->clean_array_gpc('r', array(
'userid' => TYPE_UINT,
'starteronly' => TYPE_BOOL,
'forumchoice' => TYPE_ARRAY,
'childforums' => TYPE_BOOL,
'searchthreadid' => TYPE_UINT,
));
That defines the variables it will be looking for. Of that list, I'd say forumchoice would be the one you are looking for. So, try that and see if it works.