diff options
author | Vinícius Coque <vcoque@gmail.com> | 2010-08-10 15:06:51 -0300 |
---|---|---|
committer | Renato Botelho <renato.botelho@bluepex.com> | 2010-08-10 15:06:51 -0300 |
commit | 17cc6627d485e5b759874bc47082ae7c82c2a46e (patch) | |
tree | 960f11560a25afd3b9f6c3ba9d906846ef0a02a0 /usr/local | |
parent | 3e2165b6d998fa7a15a552c686556df7e327de85 (diff) | |
download | pfsense-17cc6627d485e5b759874bc47082ae7c82c2a46e.zip pfsense-17cc6627d485e5b759874bc47082ae7c82c2a46e.tar.gz |
Fix enable_change() broken on last gettext() implementation
Diffstat (limited to 'usr/local')
-rwxr-xr-x | usr/local/www/firewall_virtual_ip_edit.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/local/www/firewall_virtual_ip_edit.php b/usr/local/www/firewall_virtual_ip_edit.php index 1781518..6a7c198 100755 --- a/usr/local/www/firewall_virtual_ip_edit.php +++ b/usr/local/www/firewall_virtual_ip_edit.php @@ -248,9 +248,9 @@ function get_radio_value(obj) } function enable_change(enable_over) { var note = document.getElementById("typenote"); - var carpnote = document.createTextNode('<?=gettext("This must be the network's subnet mask. It does not specify a CIDR range.");?>'); - var proxyarpnote = document.createTextNode('<?=gettext("This is a CIDR block of proxy ARP addresses.");?>'); - var ipaliasnote = document.createTextNode('<?=gettext("This must be the network's subnet mask. It does not specify a CIDR range.");?>'); + var carpnote = document.createTextNode("<?=gettext("This must be the network's subnet mask. It does not specify a CIDR range.");?>"); + var proxyarpnote = document.createTextNode("<?=gettext("This is a CIDR block of proxy ARP addresses.");?>"); + var ipaliasnote = document.createTextNode("<?=gettext("This must be the network's subnet mask. It does not specify a CIDR range.");?>"); if ((get_radio_value(document.iform.mode) == "carp") || enable_over) { document.iform.vhid.disabled = 0; document.iform.password.disabled = 0; |