diff options
Diffstat (limited to 'usr/local/www')
-rwxr-xr-x | usr/local/www/status_lb_pool.php | 16 | ||||
-rwxr-xr-x | usr/local/www/status_lb_vs.php | 2 |
2 files changed, 11 insertions, 7 deletions
diff --git a/usr/local/www/status_lb_pool.php b/usr/local/www/status_lb_pool.php index ce00625..20335d3 100755 --- a/usr/local/www/status_lb_pool.php +++ b/usr/local/www/status_lb_pool.php @@ -109,8 +109,8 @@ if ($_POST) { <body link="#0000CC" vlink="#0000CC" alink="#0000CC"> <?php include("fbegin.inc"); ?> <form action="status_lb_pool.php" method="post"> -<?php if (is_subsystem_dirty('loadbalancer')): ?><p> -<?php print_info_box_np(sprintf(gettext("The load balancer configuration has been changed%sYou must apply the changes in order for them to take effect."), "<br>"));?><br> +<?php if (is_subsystem_dirty('loadbalancer')): ?><p/> +<?php print_info_box_np(sprintf(gettext("The load balancer configuration has been changed%sYou must apply the changes in order for them to take effect."), "<br />"));?><br /> <?php endif; ?> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr><td class="tabnavtbl"> @@ -125,7 +125,7 @@ if ($_POST) { <tr> <td> <div id="mainarea"> - <table width="100%" border="0" cellpadding="0" cellspacing="0" class="tabcont sortable" name="sortabletable" id="sortabletable"> + <table width="100%" border="0" cellpadding="0" cellspacing="0" class="tabcont sortable" id="sortabletable"> <tr> <td width="10%" class="listhdrr"><?=gettext("Name");?></td> <td width="10%" class="listhdrr"><?=gettext("Mode");?></td> @@ -188,10 +188,10 @@ if ($_POST) { echo "<tr>"; switch ($pool['mode']) { case 'loadbalance': - echo "<td><input type='checkbox' name='{$pool['name']}|".str_replace('.', '_', $server['ip']['addr'])."' {$checked}></td>\n"; + echo "<td><input type='checkbox' name='{$pool['name']}|".str_replace('.', '_', $server['ip']['addr'])."' {$checked} /></td>\n"; break; case 'failover': - echo "<td><input type='radio' name='{$pool['name']}' value='{$server['ip']['addr']}' {$checked}></td>\n"; + echo "<td><input type='radio' name='{$pool['name']}' value='{$server['ip']['addr']}' {$checked} /></td>\n"; break; } echo "<td bgcolor={$bgcolor}> {$server['ip']['addr']}:{$pool['port']} </td><td bgcolor={$bgcolor}> "; @@ -214,12 +214,14 @@ if ($_POST) { <?php endforeach; ?> <tr> <td colspan="5"> - <input name="Submit" type="submit" class="formbtn" value="<?= gettext("Save"); ?>"> - <input name="Reset" type="reset" class="formbtn" value="<?= gettext("Reset"); ?>"> + <input name="Submit" type="submit" class="formbtn" value="<?= gettext("Save"); ?>" /> + <input name="Reset" type="reset" class="formbtn" value="<?= gettext("Reset"); ?>" /> </td> </tr> </table> </div> + </td> + </tr> </table> </form> <?php include("fend.inc"); ?> diff --git a/usr/local/www/status_lb_vs.php b/usr/local/www/status_lb_vs.php index c389287..6ca2fd0 100755 --- a/usr/local/www/status_lb_vs.php +++ b/usr/local/www/status_lb_vs.php @@ -137,6 +137,8 @@ include("head.inc"); <?php $i++; endforeach; ?> </table> </div> + </td> + </tr> </table> <?php include("fend.inc"); ?> |