[ticket/12245] Fix id attributes in acp_prune_users.html

The following labels had invalid id references:
1. joined (renamed to link to joined_after)
2. group_id (create teh id attribute on select box)

PHPBB3-12245
This commit is contained in:
hjpotter92 2014-03-04 03:41:45 +05:30
parent b01a0fe7c5
commit c82f59b5ab

View file

@ -23,7 +23,7 @@
<dd><input type="text" id="website" name="website" /></dd> <dd><input type="text" id="website" name="website" /></dd>
</dl> </dl>
<dl> <dl>
<dt><label for="joined">{L_JOINED}{L_COLON}</label><br /><span>{L_JOINED_EXPLAIN}</span></dt> <dt><label for="joined_after">{L_JOINED}{L_COLON}</label><br /><span>{L_JOINED_EXPLAIN}</span></dt>
<dd> <dd>
<strong>{L_AFTER}</strong> <input type="text" id="joined_after" name="joined_after" /> <strong>{L_AFTER}</strong> <input type="text" id="joined_after" name="joined_after" />
<br /> <br /> <strong>{L_BEFORE}</strong> <input type="text" id="joined_before" name="joined_before" /> <br /> <br /> <strong>{L_BEFORE}</strong> <input type="text" id="joined_before" name="joined_before" />
@ -44,7 +44,7 @@
<!-- IF S_GROUP_LIST --> <!-- IF S_GROUP_LIST -->
<dl> <dl>
<dt><label for="group_id">{L_GROUP}{L_COLON}</label><br /><span>{L_PRUNE_USERS_GROUP_EXPLAIN}</span></dt> <dt><label for="group_id">{L_GROUP}{L_COLON}</label><br /><span>{L_PRUNE_USERS_GROUP_EXPLAIN}</span></dt>
<dd><select name="group_id">{S_GROUP_LIST}</select></dd> <dd><select id="group_id" name="group_id">{S_GROUP_LIST}</select></dd>
</dl> </dl>
<!-- ENDIF --> <!-- ENDIF -->
</fieldset> </fieldset>