- author search should take UTF-8 [Bug #11793]

git-svn-id: file:///svn/phpbb/trunk@7780 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Nils Adermann 2007-06-19 12:36:07 +00:00
parent 1447e8714d
commit 66c7e56427

View file

@ -32,7 +32,7 @@ $view = request_var('view', '');
$submit = request_var('submit', false); $submit = request_var('submit', false);
$keywords = request_var('keywords', '', true); $keywords = request_var('keywords', '', true);
$add_keywords = request_var('add_keywords', '', true); $add_keywords = request_var('add_keywords', '', true);
$author = request_var('author', ''); $author = request_var('author', '', true);
$author_id = request_var('author_id', 0); $author_id = request_var('author_id', 0);
$show_results = ($topic_id) ? 'posts' : request_var('sr', 'posts'); $show_results = ($topic_id) ? 'posts' : request_var('sr', 'posts');
$show_results = ($show_results == 'posts') ? 'posts' : 'topics'; $show_results = ($show_results == 'posts') ? 'posts' : 'topics';
@ -84,7 +84,7 @@ if ($keywords || $author || $author_id || $search_id || $submit)
// egosearch is an author search // egosearch is an author search
if ($search_id == 'egosearch') if ($search_id == 'egosearch')
{ {
$author = $user->data['username']; $author_id = $user->data['user_id'];
} }
// If we are looking for authors get their ids // If we are looking for authors get their ids