diff options
author | Jonathan Prykop <jonathan@freeside.biz> | 2015-12-15 20:31:53 -0600 |
---|---|---|
committer | Jonathan Prykop <jonathan@freeside.biz> | 2015-12-15 20:31:53 -0600 |
commit | da6b5077952f9630f68363df66fa80efc8f1d5b7 (patch) | |
tree | c4b35718d5a76bb1bc19437d1bb0844703db9468 /httemplate/view | |
parent | 08adf9b62500806763ff3a470228dfdd45494598 (diff) |
RT#39115: View SNMP info on svc_broadband service [got rid of dialog, displays inline]
Diffstat (limited to 'httemplate/view')
-rw-r--r-- | httemplate/view/svc_broadband.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/view/svc_broadband.cgi b/httemplate/view/svc_broadband.cgi index bc272e844..0517c307a 100644 --- a/httemplate/view/svc_broadband.cgi +++ b/httemplate/view/svc_broadband.cgi @@ -72,7 +72,6 @@ sub ip_addr { my $out = $ip_addr; $out .= ' (' . include('/elements/popup_link-ping.html', ip => $ip_addr) . ')' if $ip_addr; - $out .= include('/elements/broadband_snmp_get-dialog.html', svc => $svc); if ($svc->cust_svc->part_svc->part_export('cacti')) { $out .= ' (<A HREF="' . popurl(2) @@ -84,6 +83,7 @@ sub ip_addr { $out .= '<br>Netmask: ' . $addr_block->NetAddr->mask . '<br>Gateway: ' . $addr_block->ip_gateway; } + $out .= include('/elements/broadband_snmp_get.html', svc => $svc); $out; } |