diff options
author | jim-p <jimp@pfsense.org> | 2010-08-11 13:55:37 -0400 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2010-08-11 13:59:02 -0400 |
commit | 82d0dfb39993a516b54f8216ceea9f722c5681c5 (patch) | |
tree | ef5a654a05f0c2abc2f781986f7644fc99f72c65 | |
parent | c9e7d30d3edac8b5165e9ebace80f1828cb556e3 (diff) | |
download | pfsense-82d0dfb39993a516b54f8216ceea9f722c5681c5.zip pfsense-82d0dfb39993a516b54f8216ceea9f722c5681c5.tar.gz |
When adding to a pool in manual failover mode, enforce the one-active limit also.
-rwxr-xr-x | usr/local/www/load_balancer_pool_edit.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/load_balancer_pool_edit.php b/usr/local/www/load_balancer_pool_edit.php index e8529ac..2764a92 100755 --- a/usr/local/www/load_balancer_pool_edit.php +++ b/usr/local/www/load_balancer_pool_edit.php @@ -226,7 +226,7 @@ function clearcombo(){ <td width="22%" valign="top" class="vncellreq"><?=gettext("Server IP Address"); ?></td> <td width="78%" class="vtable" colspan="2"> <input name="ipaddr" type="text" size="16" style="float: left;"> - <input class="formbtn" type="button" name="button1" value="<?=gettext("Add to pool"); ?>" onclick="AddServerToPool(document.iform);"><br> + <input class="formbtn" type="button" name="button1" value="<?=gettext("Add to pool"); ?>" onclick="AddServerToPool(document.iform); enforceFailover(); checkPoolControls();"><br> </td> </tr> <tr> |