diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-03-14 16:48:37 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-03-14 16:48:37 +0000 |
commit | 38f9cdb9744b391a714a5d8134c007b50d721e97 (patch) | |
tree | 000d19f2dca0f49cefabfef40e9747017e0b90f1 /packages/carp_status.php | |
parent | 4aff20ba8a9ba589c0bf19c95d6967a9e7d31c23 (diff) | |
download | pfsense-packages-38f9cdb9744b391a714a5d8134c007b50d721e97.tar.gz pfsense-packages-38f9cdb9744b391a714a5d8134c007b50d721e97.tar.bz2 pfsense-packages-38f9cdb9744b391a714a5d8134c007b50d721e97.zip |
Remove sync status column since this is a global setting now.
Diffstat (limited to 'packages/carp_status.php')
-rw-r--r-- | packages/carp_status.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/packages/carp_status.php b/packages/carp_status.php index 09d09b9d..f9e65665 100644 --- a/packages/carp_status.php +++ b/packages/carp_status.php @@ -67,7 +67,6 @@ include("fbegin.inc"); <tr> <td class="listhdrr"><b><center>Interface</center></b></td> <td class="listhdrr"><b><center>Status</center></b></td> - <td class="listhdrr"><b><center>Sync Status</center></b></td> </tr> <?php @@ -89,7 +88,6 @@ if($config['installedpackages']['carp']['config'] <> "") echo "<tr>"; echo "<td class=\"listlr\"><center>" . $ipaddress . " - " . $carp_int . "</td>"; echo "<td class=\"listlr\"><center>" . $status . "<br>" . $sync_status . "</td>"; - echo "<td class=\"listlr\"><center>" . $synciface . " - " . convert_friendly_interface_to_real_interface_name($synciface) . "</td>"; echo "</tr>"; } |