1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 14:00:31 +02:00

[ticket/10737] Avoid hard-coding table row and use case-insensitive search.

PHPBB3-10737
This commit is contained in:
Suhaib Khan
2014-02-23 00:22:52 +05:30
committed by Cesar G
parent e644c67dcf
commit aa23cf64ca
5 changed files with 36 additions and 13 deletions

View File

@@ -9,7 +9,13 @@
<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" /> <table class="table1" id="livesearch"></table></dd>
<dd><input type="text" name="username" id="username" value="{USERNAME}" class="inputbox liveinput" 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>
</tr>
</table>
</dd>
</dl>
<!-- IF S_EMAIL_SEARCH_ALLOWED -->
<dl>

View File

@@ -75,7 +75,14 @@
</tr>
<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" /> <table class="tablebg" id="livesearch"></table></td>
<td class="row2">
<input class="post liveinput" 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>
</tr>
</table>
</td>
<!-- IF S_EMAIL_SEARCH_ALLOWED -->
<td class="row1"><b class="genmed">{L_EMAIL}{L_COLON}</b></td>
<td class="row2"><input class="post" type="email" name="email" value="{EMAIL}" /></td>

View File

@@ -708,6 +708,7 @@ pre {
margin: 0px;
position: absolute;
box-shadow: 1px 2px 5px rgb(175,167,167);
border-spacing: 0px;
z-index: 999;
overflow: auto;
}