1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-01-18 22:58:10 +01:00

[ticket/10737] Removing obsolete code.

PHPBB3-10737
This commit is contained in:
Suhaib Khan 2014-02-24 00:37:41 +05:30 committed by Cesar G
parent aa23cf64ca
commit a74216527c
4 changed files with 8 additions and 12 deletions

View File

@ -513,7 +513,7 @@ phpbb.timezonePreselectSelect = function(forceSelector) {
};
// Listen live search box events
$('.liveinput').keyup(function() {
$('.live-search-input').keyup(function() {
var str = this.value;
if (str.length < 3) {
return;
@ -538,7 +538,7 @@ $('.liveinput').keyup(function() {
});
});
$('.liveinput').blur(function() {
$('.live-search-input').blur(function() {
setTimeout(function () {
var clone = $("#user-search-row-tpl").clone();
$("#livesearch").html("");

View File

@ -992,17 +992,13 @@ switch ($mode)
$result = $db->sql_query_limit($sql, 10);
$user_list = array();
$i = 1;
while ($row = $db->sql_fetchrow($result))
{
$j = ($i%2)+1;
$user_list[] = array("id" => $row['user_id'], "name" => $row['username']);
$i++;
}
$db->sql_freeresult($result);
$json_response = new \phpbb\json_response();
echo $json_response->send($user_list);
exit();
$json_response->send($user_list);
break;
case 'group':

View File

@ -9,10 +9,10 @@
<fieldset class="fields1 column1">
<dl>
<dt><label for="username">{L_USERNAME}{L_COLON}</label></dt>
<dd><input type="text" name="username" id="username" value="{USERNAME}" class="inputbox liveinput" autocomplete="off" />
<dd><input type="text" name="username" id="username" value="{USERNAME}" class="inputbox live-search-input" autocomplete="off" />
<table class="table1 zebra-list" id="livesearch">
<tr id="user-search-row-tpl" style="display: none;">
<td><a class="user-search-link user-search-name" target='_blank'></a></td>
<td><a class="user-search-link user-search-name" target="_blank"></a></td>
</tr>
</table>
</dd>

View File

@ -76,10 +76,10 @@
<tr>
<td class="row1"><b class="genmed">{L_USERNAME}{L_COLON}</b></td>
<td class="row2">
<input class="post liveinput" type="text" name="username" value="{USERNAME}" autocomplete="off" />
<input class="post live-search-input" type="text" name="username" value="{USERNAME}" autocomplete="off" />
<table class="tablebg" id="livesearch">
<tr id="user-search-row-tpl" style="display: none;">
<td><a class="user-search-link user-search-name" target='_blank'></a></td>
<td><a class="user-search-link user-search-name" target="_blank"></a></td>
</tr>
</table>
</td>