ソースを参照

gluon-luci-admin: fix setting the password

This was broken due to the switch to Chaos Calmer.
Matthias Schiffer 8 年 前
コミット
e878155601

+ 1 - 1
package/gluon-luci-admin/files/usr/lib/lua/luci/model/cbi/admin/remote.lua

@@ -84,7 +84,7 @@ function m2.on_commit(map)
   if v1 and v2 then
     if v1 == v2 then
       if #v1 > 0 then
-        if luci.sys.user.setpasswd(luci.dispatcher.context.authuser, v1) == 0 then
+        if luci.sys.user.setpasswd('root', v1) == 0 then
           m2.message = translate("Password changed.")
         else
           m2.errmessage = translate("Unable to change the password.")