We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The "Search subscribers" page has this searchbox:
Clicking on the labels doesn't toggle the checkboxes. The HTML is currently:
<label for="unconfirmed"> Show only unconfirmed subscribers: <input type="checkbox" name="unconfirmed" value="1"> </label>
In order to work, the <input> needs to have an id which matches the label's for. For example:
<input>
for
<input id="unconfirmed">
I'd like to create a PR to fix that in:
phplist3/public_html/lists/admin/users.php
Lines 323 to 332 in edbdc4f
The text was updated successfully, but these errors were encountered:
Update users.php - clickable labels
4de056f
Fixes phpList#1057
Successfully merging a pull request may close this issue.
The "Search subscribers" page has this searchbox:
Clicking on the labels doesn't toggle the checkboxes. The HTML is currently:
In order to work, the
<input>
needs to have an id which matches the label'sfor
. For example:I'd like to create a PR to fix that in:
phplist3/public_html/lists/admin/users.php
Lines 323 to 332 in edbdc4f
The text was updated successfully, but these errors were encountered: