diff options
author | Dmitriy K. <levantin@mail.nnov.ru> | 2014-06-17 11:09:08 +0400 |
---|---|---|
committer | Dmitriy K. <levantin@mail.nnov.ru> | 2014-06-17 11:09:08 +0400 |
commit | caf58ced52067776e57e48dac64bc43d7f0273a2 (patch) | |
tree | 9583392e43ddaf81464d0be97ebf56bf6a34093d | |
parent | b9e9903ddb21665023c9fcc241099476a42a9dbd (diff) | |
download | pfsense-caf58ced52067776e57e48dac64bc43d7f0273a2.zip pfsense-caf58ced52067776e57e48dac64bc43d7f0273a2.tar.gz |
a bit of refactoring
forgot to sync _server.php with _client.php naming style
-rw-r--r-- | usr/local/www/vpn_openvpn_server.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr/local/www/vpn_openvpn_server.php b/usr/local/www/vpn_openvpn_server.php index 972ceeb..7f92686 100644 --- a/usr/local/www/vpn_openvpn_server.php +++ b/usr/local/www/vpn_openvpn_server.php @@ -680,7 +680,7 @@ function tuntap_change() { value = document.iform.dev_mode.options[index].value; switch(value) { case "tun": - document.getElementById("cbNoTunIPv6").style.display=""; + document.getElementById("chkboxNoTunIPv6").style.display=""; document.getElementById("ipv4_tunnel_network").className="vncellreq"; document.getElementById("serverbridge_dhcp").style.display="none"; document.getElementById("serverbridge_interface").style.display="none"; @@ -689,7 +689,7 @@ function tuntap_change() { document.getElementById("topology_subnet_opt").style.display=""; break; case "tap": - document.getElementById("cbNoTunIPv6").style.display="none"; + document.getElementById("chkboxNoTunIPv6").style.display="none"; document.getElementById("ipv4_tunnel_network").className="vncell"; if (!p2p) { document.getElementById("serverbridge_dhcp").style.display=""; @@ -1351,7 +1351,7 @@ if ($savemsg) <?php endforeach; ?> </select> <br /> - <?=gettext("Compress tunnel packets using the LZO algorithm. Adaptive compression will dynamically disable compression for a period of time if OpenVPN detects that the data in the packets is not being compressed efficiently."); ?>. + <?=gettext("Compress tunnel packets using the LZO algorithm. Adaptive compression will dynamically disable compression for a period of time if OpenVPN detects that the data in the packets is not being compressed efficiently"); ?>. </td> </tr> <tr> @@ -1409,7 +1409,7 @@ if ($savemsg) </td> </tr> - <tr id="cbNoTunIPv6"> + <tr id="chkboxNoTunIPv6"> <td width="22%" valign="top" class="vncell"><?=gettext("Disable IPv6"); ?></td> <td width="78%" class="vtable"> <table border="0" cellpadding="2" cellspacing="0" summary="disable-ipv6-srv"> |