1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-12 03:34:04 +02:00

Slight mods to the usersearch function, moved to search.php

git-svn-id: file:///svn/phpbb/trunk@1224 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen
2001-10-16 14:47:27 +00:00
parent 69e8054bdc
commit fd59e88898
8 changed files with 95 additions and 100 deletions

View File

@@ -745,19 +745,12 @@ else if( $submit || $refresh || $mode != "" )
if( $mode == "searchuser" )
{
if( isset($HTTP_POST_VARS['search']) )
{
$username_list = username_search("privmsg.$phpEx", $HTTP_POST_VARS['search_author'], 1);
}
else
{
username_search("privmsg.$phpEx", "", 1);
}
//
// Remove this later
// This 'will' handle a simple user search
// performed from within the private message post
// form
//
exit;
}
//
@@ -1488,6 +1481,7 @@ else if( $submit || $refresh || $mode != "" )
"S_HIDDEN_FORM_FIELDS" => $s_hidden_fields,
"S_POST_ACTION" => append_sid("privmsg.$phpEx"),
"U_SEARCH_USER" => append_sid("search.$phpEx?mode=searchuser"),
"U_VIEW_FORUM" => append_sid("privmsg.$phpEx"))
);