summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2012-12-25 02:44:19 +0000
committerJo-Philipp Wich <jow@openwrt.org>2012-12-25 02:44:19 +0000
commitf2a428cdb31d4a77ee41e8bea5bd2dc307ae6356 (patch)
tree66ab48380c16e0c354b0d1164ca6648b1bbe5e28
parent018cbe69a9f92db1aa0aced41656a2aa37019f94 (diff)
applications/luci-upnp: fix missing XML escapres (#521)
-rw-r--r--applications/luci-upnp/luasrc/model/cbi/upnp/upnp.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-upnp/luasrc/model/cbi/upnp/upnp.lua b/applications/luci-upnp/luasrc/model/cbi/upnp/upnp.lua
index de38afc71..3d98d6682 100644
--- a/applications/luci-upnp/luasrc/model/cbi/upnp/upnp.lua
+++ b/applications/luci-upnp/luasrc/model/cbi/upnp/upnp.lua
@@ -13,7 +13,7 @@ You may obtain a copy of the License at
$Id$
]]--
-m = Map("upnpd", translate("Universal Plug & Play"),
+m = Map("upnpd", luci.util.pcdata(translate("Universal Plug & Play")),
translate("UPnP allows clients in the local network to automatically configure the router."))
m:section(SimpleSection).template = "upnp_status"