Topic: User search
I added some fields to user profile and I'd like the user search feature to search the username and another field. If a match is found in either one then it shows up.
In the userlist.php file, I think the line to change is the one below. I need to make it an 'OR' statement and add the code for the other field. How do I do this?
$where_sql[] = 'u.username '.$like_command.' \''.$db->escape(str_replace('*', '%', $username)).'\'';