diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-06-28 21:07:32 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-06-28 21:07:32 +0000 |
commit | 018a4be78f0e22e0d50790d785e0ee804ea312d5 (patch) | |
tree | b9046091042c965f765b9280f9c76ca4dfdc57ee | |
parent | 9a99cd41c195d4cbe2f9c009b4cc10832bf98b5d (diff) | |
download | pfsense-018a4be78f0e22e0d50790d785e0ee804ea312d5.zip pfsense-018a4be78f0e22e0d50790d785e0ee804ea312d5.tar.gz |
Don't chop off footer table elements
-rwxr-xr-x | usr/local/www/carp_status.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr/local/www/carp_status.php b/usr/local/www/carp_status.php index f0fe3c9..70e9704 100755 --- a/usr/local/www/carp_status.php +++ b/usr/local/www/carp_status.php @@ -93,7 +93,8 @@ include("fbegin.inc"); if(!is_array($config['installedpackages']['carp']['config'])) { echo "</td></tr></table><center>Could not locate any defined CARP interfaces."; - echo "</center></td></tr></table></td></tr></table>"; + echo "</center>"; + include("fend.inc"); echo "</body></html>"; exit; |