aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm
diff options
context:
space:
mode:
authorhjpotter92 <hjpotter92@iitkgp.ac.in>2014-03-04 03:41:45 +0530
committerhjpotter92 <hjpotter92@iitkgp.ac.in>2014-03-04 03:41:45 +0530
commitc82f59b5abd2838a31bae58ba12c41805b684af0 (patch)
treeb411ddff06025fd38647d8b7108669db9dc55527 /phpBB/adm
parentb01a0fe7c5d519c97a33c607e161fb6da5327369 (diff)
downloadforums-c82f59b5abd2838a31bae58ba12c41805b684af0.tar
forums-c82f59b5abd2838a31bae58ba12c41805b684af0.tar.gz
forums-c82f59b5abd2838a31bae58ba12c41805b684af0.tar.bz2
forums-c82f59b5abd2838a31bae58ba12c41805b684af0.tar.xz
forums-c82f59b5abd2838a31bae58ba12c41805b684af0.zip
[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
Diffstat (limited to 'phpBB/adm')
-rw-r--r--phpBB/adm/style/acp_prune_users.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/adm/style/acp_prune_users.html b/phpBB/adm/style/acp_prune_users.html
index 2bbb03a834..5bd325d275 100644
--- a/phpBB/adm/style/acp_prune_users.html
+++ b/phpBB/adm/style/acp_prune_users.html
@@ -23,7 +23,7 @@
<dd><input type="text" id="website" name="website" /></dd>
</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>
<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" />
@@ -44,7 +44,7 @@
<!-- IF S_GROUP_LIST -->
<dl>
<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>
<!-- ENDIF -->
</fieldset>