From: Jo-Philipp Wich Date: Sat, 8 Feb 2020 10:24:51 +0000 (+0100) Subject: luci-app-upnp: escape map title X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=50720d36a362c53352fecd3186f2b08c51f26c7b;p=oweals%2Fluci.git luci-app-upnp: escape map title Fixes: #3597 Signed-off-by: Jo-Philipp Wich --- 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');