diff options
author | Patrick Grimm <patrick@lunatiki.de> | 2013-10-18 10:42:15 +0000 |
---|---|---|
committer | Patrick Grimm <patrick@lunatiki.de> | 2013-10-18 10:42:15 +0000 |
commit | 12ede3f2d98b5f8af89eeb01a329f9e065a7d1a1 (patch) | |
tree | 23a4066c83a621c05577aeec732ffb149c5faf60 /applications | |
parent | 69792fa157f97939a66c763d8a997b77e39d7da6 (diff) |
applications/luci-statistics: fix img url
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 e9b0baf05..3249d993b 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%>" /> + <img src="<%=REQUEST_URI%>?img=<%=img%>&host=<%=current_host%>" /> <% if is_index then %></a><% end %> <br /> <% end %> |