diff options
author | Darren Embry <dse@webonastick.com> | 2012-09-06 14:45:43 -0400 |
---|---|---|
committer | Darren Embry <dse@webonastick.com> | 2012-09-06 14:47:00 -0400 |
commit | 00ad21b9d71a5b5cda116a6a30293999847e39e4 (patch) | |
tree | 0a8ea8823fea7df9a16d1153c7dd66c8e1f77ab5 /usr | |
parent | 59167b10fbe27b37c3fe9683bd58c24a4abdb732 (diff) | |
download | pfsense-00ad21b9d71a5b5cda116a6a30293999847e39e4.zip pfsense-00ad21b9d71a5b5cda116a6a30293999847e39e4.tar.gz |
fix more imbalanced HTML tags.
hopefully continues to fix #2625 but no guarantees.
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/firewall_nat.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/usr/local/www/firewall_nat.php b/usr/local/www/firewall_nat.php index 0d92d1a..b9eb91a 100755 --- a/usr/local/www/firewall_nat.php +++ b/usr/local/www/firewall_nat.php @@ -229,11 +229,19 @@ echo "<script type=\"text/javascript\" language=\"javascript\" src=\"/javascript $alias_dst_span_begin = $alias_popup["dst"]; $alias_dst_port_span_begin = $alias_popup["dstport"]; + $alias_src_span_end = $alias_popup["src_end"]; + $alias_src_port_span_end = $alias_popup["srcport_end"]; + $alias_dst_span_end = $alias_popup["dst_end"]; + $alias_dst_port_span_end = $alias_popup["dstport_end"]; + $alias_popup = rule_popup("","",$natent['target'], pprint_port($natent['local-port'])); $alias_target_span_begin = $alias_popup["dst"]; $alias_local_port_span_begin = $alias_popup["dstport"]; + $alias_target_span_end = $alias_popup["dst_end"]; + $alias_local_port_span_end = $alias_popup["dstport_end"]; + if (isset($natent['disabled'])) $textss = "<span class=\"gray\">"; else |