modules/admin-full: set password of logged in user instead of unconditionally using...
authorJo-Philipp Wich <jow@openwrt.org>
Fri, 6 Jan 2012 16:42:02 +0000 (16:42 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Fri, 6 Jan 2012 16:42:02 +0000 (16:42 +0000)
modules/admin-full/luasrc/model/cbi/admin_system/admin.lua

index fbc0dfc..a3da6be 100644 (file)
@@ -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!")