diff options
author | thompsa <andy@fud.org.nz> | 2010-02-07 16:21:47 +1300 |
---|---|---|
committer | thompsa <andy@fud.org.nz> | 2010-02-07 16:21:47 +1300 |
commit | 6a7987846c7d4680a35264f7e27287c61937cf78 (patch) | |
tree | cc33a26be7ba8ad402e3b09c2703e1883024fca5 /config/haproxy-dev/haproxy_frontends.php | |
parent | d4f39e68de79ca8823d1b7397e79dd13e24f7dfa (diff) | |
download | pfsense-packages-6a7987846c7d4680a35264f7e27287c61937cf78.tar.gz pfsense-packages-6a7987846c7d4680a35264f7e27287c61937cf78.tar.bz2 pfsense-packages-6a7987846c7d4680a35264f7e27287c61937cf78.zip |
Make some of the gui changes as described.
Diffstat (limited to 'config/haproxy-dev/haproxy_frontends.php')
-rwxr-xr-x | config/haproxy-dev/haproxy_frontends.php | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/config/haproxy-dev/haproxy_frontends.php b/config/haproxy-dev/haproxy_frontends.php index d50133b8..87efb87f 100755 --- a/config/haproxy-dev/haproxy_frontends.php +++ b/config/haproxy-dev/haproxy_frontends.php @@ -69,7 +69,7 @@ $pfSversion = str_replace("\n", "", file_get_contents("/etc/version")); if(strstr($pfSversion, "1.2")) $one_two = true; -$pgtitle = "Services: HAProxy: Frontend"; +$pgtitle = "Services: HAProxy: Listener"; include("head.inc"); ?> @@ -89,10 +89,10 @@ include("head.inc"); <?php /* active tabs */ $tab_array = array(); - $tab_array[] = array("Settings", false, "haproxy_global.php"); - $tab_array[] = array("Frontends", true, "haproxy_frontends.php"); - $tab_array[] = array("Servers", false, "haproxy_servers.php"); - display_top_tabs($tab_array); + $tab_array[] = array("Settings", false, "haproxy_global.php"); + $tab_array[] = array("Listener", true, "haproxy_frontends.php"); + $tab_array[] = array("Server Pool", false, "haproxy_servers.php"); + display_top_tabs($tab_array); ?> </td></tr> <tr> @@ -102,7 +102,6 @@ include("head.inc"); <tr> <td width="30%" class="listhdrr">Name</td> <td width="40%" class="listhdrr">Description</td> - <td width="10%" class="listhdrr">Stats URI</td> <td width="10%" class="listhdrr">Type</td> <td width="10%" class="list"></td> </tr> @@ -114,9 +113,6 @@ include("head.inc"); <td class="listlr" ondblclick="document.location='haproxy_frontends_edit.php?id=<?=$i;?>';"> <?=$backend['desc'];?> </td> - <td class="listlr" ondblclick="document.location='haproxy_frontends_edit.php?id=<?=$i;?>';"> - <?=$backend['stats_uri'];?> - </td> <td class="listlr" ondblclick="document.location='haproxy_frontends_edit.php?id=<?=$i;?>';"> <?=$backend['type'];?> </td> |