From: Ant Zucaro Date: Thu, 5 Sep 2013 16:04:33 +0000 (-0400) Subject: Fix reference to old view name. X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=de2c7439c556a494cf0f0b3b4025eab8cc986ab8;p=xonotic%2Fxonstat.git Fix reference to old view name. --- diff --git a/xonstat/templates/nvd3_damage.mako b/xonstat/templates/nvd3_damage.mako index a1e69b5..6ec21ab 100644 --- a/xonstat/templates/nvd3_damage.mako +++ b/xonstat/templates/nvd3_damage.mako @@ -80,8 +80,8 @@ text { } % if game_type_cd is not None: - d3.json("${request.route_url('player_damage_data_v2', id=player_id, _query={'limit':limit, 'game_type':game_type_cd})}", doDamageGraph); + d3.json("${request.route_url('player_weaponstats_data_json', id=player_id, _query={'limit':limit, 'game_type':game_type_cd})}", doDamageGraph); % else: - d3.json("${request.route_url('player_damage_data_v2', id=player_id, _query={'limit':limit})}", doDamageGraph); + d3.json("${request.route_url('player_weaponstats_data_json', id=player_id, _query={'limit':limit})}", doDamageGraph); % endif