modules/admin-full: set password of logged in user instead of unconditionally using root, thanks Viktar Palstsiuk <viktar.palstsiuk@promwad.com>
This commit is contained in:
parent
1e0e458ff3
commit
c043db6518
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ function m.on_commit(map)
|
|||
|
||||
if v1 and v2 and #v1 > 0 and #v2 > 0 then
|
||||
if v1 == v2 then
|
||||
if luci.sys.user.setpasswd("root", v1) == 0 then
|
||||
if luci.sys.user.setpasswd(luci.dispatcher.context.authuser, v1) == 0 then
|
||||
m.message = translate("Password successfully changed!")
|
||||
else
|
||||
m.message = translate("Unknown Error, password not changed!")
|
||||
|
|
Loading…
Reference in a new issue