diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2008-08-20 17:08:15 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2008-08-20 17:08:15 +0000 |
commit | dbfd045b9b0d690ee778f85c9356869794c2d750 (patch) | |
tree | c1d3c6c85d6d940d21328ce3e2e50398012a404a /themes/openwrt-light | |
parent | 0938135dbbf8681bbd287612e3f2ed4d6fba3f35 (diff) |
* luci/themes: add striptags() to page titles
Diffstat (limited to 'themes/openwrt-light')
-rw-r--r-- | themes/openwrt-light/luasrc/view/themes/openwrt-light/header.htm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/openwrt-light/luasrc/view/themes/openwrt-light/header.htm b/themes/openwrt-light/luasrc/view/themes/openwrt-light/header.htm index fe0fa0b33..0d9d1bd2e 100644 --- a/themes/openwrt-light/luasrc/view/themes/openwrt-light/header.htm +++ b/themes/openwrt-light/luasrc/view/themes/openwrt-light/header.htm @@ -43,7 +43,7 @@ require("luci.http").prepare_content("text/html") <% if node and node.css then %><link rel="stylesheet" type="text/css" href="<%=resource%>/<%=node.css%>" /><% end %> <meta http-equiv="content-type" content="application/xhtml+xml; charset=utf-8" /> <meta http-equiv="content-script-type" content="text/javascript" /> - <title><%= hostname .. ( (node and node.title) and ' - ' .. node.title or '') %> - LuCI</title> + <title><%=striptags( hostname .. ( (node and node.title) and ' - ' .. node.title or '')) %> - LuCI</title> <!--[if lt IE 7]> <script type="text/javascript"> |