mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-23 10:01:55 +02:00
[ticket/11010] fixing inputs types in memberlist_search.html
PHPBB3-11010
This commit is contained in:
@@ -79,12 +79,12 @@ function insert_single(user)
|
||||
<fieldset class="fields1 column2">
|
||||
<dl>
|
||||
<dt><label for="joined">{L_JOINED}{L_COLON}</label></dt>
|
||||
<dd><select name="joined_select">{S_JOINED_TIME_OPTIONS}</select> <input class="inputbox medium" type="date" name="joined" id="joined" value="{JOINED}" /></dd>
|
||||
<dd><select name="joined_select">{S_JOINED_TIME_OPTIONS}</select> <input class="inputbox medium" type="text" name="joined" id="joined" value="{JOINED}" /></dd>
|
||||
</dl>
|
||||
<!-- IF S_VIEWONLINE -->
|
||||
<dl>
|
||||
<dt><label for="active">{L_LAST_ACTIVE}{L_COLON}</label></dt>
|
||||
<dd><select name="active_select">{S_ACTIVE_TIME_OPTIONS}</select> <input class="inputbox medium" type="date" name="active" id="active" value="{ACTIVE}" /></dd>
|
||||
<dd><select name="active_select">{S_ACTIVE_TIME_OPTIONS}</select> <input class="inputbox medium" type="text" name="active" id="active" value="{ACTIVE}" /></dd>
|
||||
</dl>
|
||||
<!-- ENDIF -->
|
||||
<dl>
|
||||
|
@@ -35,7 +35,7 @@
|
||||
{
|
||||
opener.document.forms['{S_FORM_NAME}'].{S_FIELD_NAME}.value = user;
|
||||
self.close();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Mark/unmark checklist
|
||||
@@ -51,7 +51,7 @@
|
||||
}
|
||||
|
||||
var rb = parent.getElementsByTagName('input');
|
||||
|
||||
|
||||
for (var r = 0; r < rb.length; r++)
|
||||
{
|
||||
if (rb[r].name.substr(0, name.length) == name)
|
||||
@@ -107,7 +107,7 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1"><b class="genmed">{L_POSTS}{L_COLON}</b></td>
|
||||
<td class="row2"><select name="count_select">{S_COUNT_OPTIONS}</select> <input class="post" type="text" name="count" value="{COUNT}" /></td>
|
||||
<td class="row2"><select name="count_select">{S_COUNT_OPTIONS}</select> <input class="post" type="number" min="0" name="count" value="{COUNT}" /></td>
|
||||
<td class="row1"><b class="genmed">{L_JABBER}{L_COLON}</b></td>
|
||||
<td class="row2"><input class="post" type="text" name="jabber" value="{JABBER}" /></td>
|
||||
</tr>
|
||||
|
Reference in New Issue
Block a user