Skip to content

Commit

Permalink
scripts/lua/aggregated_hosts_stats.lua: fix quoting typo
Browse files Browse the repository at this point in the history
This commit fixes a typo in the aggregated hosts script so that data
are now displayed correctly.

Signed-off-by: Yuri Francalacci <yuri@ntop.org>
  • Loading branch information
ariava committed May 19, 2015
1 parent 2b25263 commit d1442c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/lua/aggregated_hosts_stats.lua
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ print [[
<hr>
<div id="table-hosts"></div>
<script>
var url_update =]]
var url_update ="]]
print(ntop.getHttpPrefix())
print[["/lua/get_hosts_data.lua?aggregated=1]]
print[[/lua/get_hosts_data.lua?aggregated=1]]
if(_GET["protocol"]) then print("&protocol=".._GET["protocol"]) end
if(_GET["client"]) then print("&client=".._GET["client"]) end
if(_GET["aggregation"] ~= nil) then print("&aggregation=".._GET["aggregation"]) end
Expand Down

0 comments on commit d1442c7

Please sign in to comment.