From 3fec8dff2cc22bc56a6d909be6df8742ab145c6f Mon Sep 17 00:00:00 2001 From: Cesar G Date: Tue, 8 Apr 2014 05:33:24 -0700 Subject: [PATCH] [ticket/10737] Set the username as the input value instead of redirecting. PHPBB3-10737 --- phpBB/assets/javascript/core.js | 8 ++++---- phpBB/memberlist.php | 5 +++-- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/phpBB/assets/javascript/core.js b/phpBB/assets/javascript/core.js index f9cc3f7a91..4a16cfd73e 100644 --- a/phpBB/assets/javascript/core.js +++ b/phpBB/assets/javascript/core.js @@ -665,11 +665,11 @@ phpbb.search.showResults = function(results, el, container, callback) { $.each(results, function(i, item) { row = tpl.clone(); - row.find('.search-result').html(item.result); + row.find('.search-result').html(item.display); - if (callback === 'function') { + if (typeof callback === 'function') { callback.call(this, el, item, row, container); - } + } row.appendTo(resultContainer).show(); }); container.show(); @@ -836,7 +836,7 @@ phpbb.addAjaxCallback = function(id, callback) { * This callback handles live member searches. */ phpbb.addAjaxCallback('member_search', function(res) { - phpbb.search.handleResponse(res, $(this), false); + phpbb.search.handleResponse(res, $(this), false, phpbb.getFunctionByName('phpbb.search.setValueOnClick')); }); /** diff --git a/phpBB/memberlist.php b/phpBB/memberlist.php index 3cc92b5fe0..4103855f43 100644 --- a/phpBB/memberlist.php +++ b/phpBB/memberlist.php @@ -996,8 +996,9 @@ switch ($mode) { $user_list[] = array( 'user_id' => (int) $row['user_id'], - 'username' => $row['username'], - 'result' => get_username_string('full', $row['user_id'], $row['username'], $row['user_colour']), + 'result' => $row['username'], + 'username_full' => get_username_string('full', $row['user_id'], $row['username'], $row['user_colour']), + 'display' => get_username_string('no_profile', $row['user_id'], $row['username'], $row['user_colour']), ); } $db->sql_freeresult($result);