You could hack it in to search.php...
To get you started, you'd be editing this:
Code:
if ($searchuser!="") {
if ($exactname=="yes") {
$checkuser="AND INSTR(userindex,' ".addslashes($searchuser)." ')>0";
} else {
$checkuser="AND INSTR(userindex,'".addslashes($searchuser)."')>0";
}
} else {
$checkuser="";
}
To resemble:
Code:
if ($searchuser!="") {
if ($threadstart=="yes") {
if ($exactname=="yes") {
$checkuser="AND thread.postusername = '".addslashes($searchuser)."'";
} else {
$checkuser="AND thread.postusername LIKE '%".addslashes($searchuser)."%'";
}
} else {
if ($exactname=="yes") {
$checkuser="AND INSTR(userindex,' ".addslashes($searchuser)." ')>0";
} else {
$checkuser="AND INSTR(userindex,'".addslashes($searchuser)."')>0";
}
}
} else {
$checkuser="";
}
Then change the search template to have radio buttons for $threadstart...
Should be all!