diff options
author | Bill Marquette <billm@pfsense.org> | 2007-10-19 21:11:59 +0000 |
---|---|---|
committer | Bill Marquette <billm@pfsense.org> | 2007-10-19 21:11:59 +0000 |
commit | 674d0fc1db46e5caa20e4503b60cf5e30d752371 (patch) | |
tree | 5aa5c7046fbb7dd51f4bb1cfe1c7f5fbc8254706 | |
parent | 519352daf7b39e0ac1dd6cdc395adccb634a9419 (diff) | |
download | pfsense-674d0fc1db46e5caa20e4503b60cf5e30d752371.zip pfsense-674d0fc1db46e5caa20e4503b60cf5e30d752371.tar.gz |
ratio load balancing should actually work
-rwxr-xr-x | usr/local/www/pool.js | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/usr/local/www/pool.js b/usr/local/www/pool.js index b6f260e..6c87d4e 100755 --- a/usr/local/www/pool.js +++ b/usr/local/www/pool.js @@ -39,24 +39,6 @@ function AddServerToPool(form) { IntOrIp = form.ipaddr; else IntOrIp = form.interface; - - // Check items in "enabled" list - for(i = enabledSel.length - 1; i >= 0; i--) - { - if(enabledSel.options[i].value == IntOrIp.value) { - alert("IP Address Already In 'Enabled' List"); - return true; - } - } - - // Check items in "disabled" list - for(i = disabledSel.length - 1; i >= 0; i--) - { - if(disabledSel.options[i].value == IntOrIp.value) { - alert("IP Address Already In 'Disabled' List"); - return true; - } - } if (form.type.selectedIndex == 1) { if (!form.monitorip.value) { |