diff options
author | Jo-Philipp Wich <jo@mein.io> | 2020-02-08 11:24:51 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2020-02-08 11:24:51 +0100 |
commit | 50720d36a362c53352fecd3186f2b08c51f26c7b (patch) | |
tree | a83b808a2f25329b8af0670b796dae9ae73b4c6d /applications/luci-app-upnp/htdocs | |
parent | c2eeb09bd99b03eead837d8dbfb3f0d8046ccc65 (diff) |
luci-app-upnp: escape map title
Fixes: #3597
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'applications/luci-app-upnp/htdocs')
-rw-r--r-- | applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js b/applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js index b85fd6d9d..cfd1e3508 100644 --- a/applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js +++ b/applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js @@ -69,7 +69,7 @@ return L.view.extend({ var m, s, o; - m = new form.Map('upnpd', _('Universal Plug & Play'), + m = new form.Map('upnpd', [_('Universal Plug & Play')], _('UPnP allows clients in the local network to automatically configure the router.')); s = m.section(form.GridSection, '_active_rules'); |