diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-05-07 01:30:42 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-05-07 01:30:42 +0000 |
commit | bd424c519e2311c2e4f59b9f68aaecb24918d0fa (patch) | |
tree | ed6fb2f61f863b32dd393bae3eca729dd473ca93 /packages/carp_status.php | |
parent | 570b1589db2706c56ddefd05e06311a81e81db21 (diff) | |
download | pfsense-packages-bd424c519e2311c2e4f59b9f68aaecb24918d0fa.tar.gz pfsense-packages-bd424c519e2311c2e4f59b9f68aaecb24918d0fa.tar.bz2 pfsense-packages-bd424c519e2311c2e4f59b9f68aaecb24918d0fa.zip |
Fill in table cells when there are no contents
Diffstat (limited to 'packages/carp_status.php')
-rw-r--r-- | packages/carp_status.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/carp_status.php b/packages/carp_status.php index 840258b3..9c9022b8 100644 --- a/packages/carp_status.php +++ b/packages/carp_status.php @@ -119,9 +119,9 @@ if($config['installedpackages']['carp']['config'] <> "") if(isset($carp['premption'])) $premption = "true"; else $premption = "false"; // if($synciface <> "") $sync_status = get_pfsync_interface_status($synciface); echo "<tr>"; - echo "<td class=\"listlr\"><center>" . $carp_int . "</td>"; - echo "<td class=\"listlr\"><center>" . $ipaddress . "</td>"; - echo "<td class=\"listlr\"><center>" . $status . "</td>"; + echo "<td class=\"listlr\"><center>" . $carp_int . " </td>"; + echo "<td class=\"listlr\"><center>" . $ipaddress . " </td>"; + echo "<td class=\"listlr\"><center>" . $status . " </td>"; echo "</tr>"; } |