diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2013-12-03 23:58:15 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2013-12-03 23:58:15 +0000 |
commit | 6f8881d48d713b320a5d71c6c7b9dd7af310f12d (patch) | |
tree | 857f1469c85a969de5b4aab41be9760d08cdd503 /applications | |
parent | 29b3a87de28c788e88b4785e2bb514d4f17f50a2 (diff) |
applications/luci-statistics: fix xhtml entity error introduced with r9926
Diffstat (limited to 'applications')
-rw-r--r-- | applications/luci-statistics/luasrc/view/public_statistics/graph.htm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-statistics/luasrc/view/public_statistics/graph.htm b/applications/luci-statistics/luasrc/view/public_statistics/graph.htm index 3249d993b..8a8256bbb 100644 --- a/applications/luci-statistics/luasrc/view/public_statistics/graph.htm +++ b/applications/luci-statistics/luasrc/view/public_statistics/graph.htm @@ -38,7 +38,7 @@ $Id$ <div style="text-align: center"> <% for i, img in ipairs(images) do %> <% if is_index then %><a href="<%=pcdata(images[img])%>"><% end %> - <img src="<%=REQUEST_URI%>?img=<%=img%>&host=<%=current_host%>" /> + <img src="<%=REQUEST_URI%>?img=<%=img%>&host=<%=current_host%>" /> <% if is_index then %></a><% end %> <br /> <% end %> |