webui: Update add/edit user page to use their instead of his #5457 (#5460)

This commit is contained in:
Neil Lathwood
2017-01-16 11:11:37 +00:00
committed by GitHub
parent 5979250be2
commit 22b74ec363
2 changed files with 2 additions and 2 deletions

View File

@@ -86,7 +86,7 @@ if ($_SESSION['userlevel'] < '10') {
</select>
<div class='checkbox'>
<label>
<input type='checkbox' checked='checked' name='can_modify_passwd'> Allow the user to change his password.
<input type='checkbox' checked='checked' name='can_modify_passwd'> Allow the user to change their password.
</label>
</div>
<hr>

View File

@@ -359,7 +359,7 @@ if ($_SESSION['userlevel'] != '10') {
<input type='checkbox' ";
if ($vars['can_modify_passwd'] == '1') {
echo "checked='checked'";
} echo " name='can_modify_passwd'> Allow the user to change his password.
} echo " name='can_modify_passwd'> Allow the user to change their password.
</label>
</div>
</div>