Skip to content
Snippets Groups Projects
Commit ee9498f5 authored by Christopher Smith's avatar Christopher Smith
Browse files

usermanager: fix an issue where edit user table would incorrectly show the password blank message

parent 4fb6e514
No related branches found
No related tags found
No related merge requests found
......@@ -270,7 +270,9 @@ class admin_plugin_usermanager extends DokuWiki_Admin_Plugin {
$this->_htmlInputField($cmd."_usergroups","usergroups",$this->lang["user_groups"],$groups,$this->_auth->canDo("modGroups"),$indent+6);
if ($this->_auth->canDo("modPass")) {
$notes[] = $this->lang['note_pass'];
if ($cmd == 'add') {
$notes[] = $this->lang['note_pass'];
}
if ($user) {
$notes[] = $this->lang['note_notify'];
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment