diff options
author | Hannu Nyman <hannu.nyman@iki.fi> | 2020-04-05 13:59:17 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-05 13:59:17 +0300 |
commit | e7d935dd39bc0de823c907ef8e5d7d3607a59c3c (patch) | |
tree | d9ffe7714753cc48dc66341f506251c5826d5c0d /applications | |
parent | 1cf4d5691bfcf82717791c5290250688c63fcc41 (diff) | |
parent | d6be300b14c94f1fcd0711e5da65c37e7f0cda8e (diff) |
Merge pull request #3816 from joweisberg/master
luci-app-samba: Fix path url link to mounts
Diffstat (limited to 'applications')
-rw-r--r-- | applications/luci-app-samba/luasrc/model/cbi/samba.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/applications/luci-app-samba/luasrc/model/cbi/samba.lua b/applications/luci-app-samba/luasrc/model/cbi/samba.lua index 2e533c3f57..e972874f5b 100644 --- a/applications/luci-app-samba/luasrc/model/cbi/samba.lua +++ b/applications/luci-app-samba/luasrc/model/cbi/samba.lua @@ -19,7 +19,7 @@ h = s:taboption("general", Flag, "homes", translate("Share home-directories"), h.rmempty = false tmpl = s:taboption("template", Value, "_tmpl", - translate("Edit the template that is used for generating the samba configuration."), + translate("Edit the template that is used for generating the samba configuration."), translate("This is the content of the file '/etc/samba/smb.conf.template' from which your samba configuration will be generated. " .. "Values enclosed by pipe symbols ('|') should not be changed. They get their values from the 'General Settings' tab.")) @@ -45,7 +45,7 @@ s.template = "cbi/tblsection" s:option(Value, "name", translate("Name")) pth = s:option(Value, "path", translate("Path")) if nixio.fs.access("/etc/config/fstab") then - pth.titleref = luci.dispatcher.build_url("admin", "system", "fstab") + pth.titleref = luci.dispatcher.build_url("admin", "system", "mounts") end s:option(Value, "users", translate("Allowed users")).rmempty = true |