diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2010-03-06 15:39:09 -0500 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2010-03-06 15:39:09 -0500 |
commit | 024ab5be05563a8161bbd3146a43c6bbedb51ea0 (patch) | |
tree | 260f1b99bd821cf6ae6f206e324f5163b7689fc9 /config/openospfd/status_ospfd.php | |
parent | ca424140fcd49861c26e064f56733cceb79cd584 (diff) | |
download | pfsense-packages-024ab5be05563a8161bbd3146a43c6bbedb51ea0.tar.gz pfsense-packages-024ab5be05563a8161bbd3146a43c6bbedb51ea0.tar.bz2 pfsense-packages-024ab5be05563a8161bbd3146a43c6bbedb51ea0.zip |
Fix formatting
Diffstat (limited to 'config/openospfd/status_ospfd.php')
-rw-r--r-- | config/openospfd/status_ospfd.php | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/config/openospfd/status_ospfd.php b/config/openospfd/status_ospfd.php index b20b7d04..c60335de 100644 --- a/config/openospfd/status_ospfd.php +++ b/config/openospfd/status_ospfd.php @@ -35,8 +35,8 @@ include("head.inc"); /* List all of the commands as an index. */ function listCmds() { global $commands; - echo "<p>This status page includes the following information:\n"; - echo "<ul width=\"700\">\n"; + echo "<br/>This status page includes the following information:\n"; + echo "<ul width=\"100%\">\n"; for ($i = 0; isset($commands[$i]); $i++ ) { echo "<li><strong><a href=\"#" . $commands[$i][0] . "\">" . $commands[$i][0] . "</a></strong></li>\n"; } @@ -107,7 +107,7 @@ if(strstr($pfSversion, "1.2")) <?php endif; ?> <?php if ($savemsg) print_info_box($savemsg); ?> <div id="mainlevel"> - <table width="100%" border="0" cellpadding="0" cellspacing="0"> + <table width="100%" border="0" cellpadding="6" cellspacing="0"> <?php $tab_array = array(); $tab_array[] = array(gettext("Settings"), false, "/pkg_edit.php?xml=openospfd.xml&id=0"); @@ -116,15 +116,11 @@ if(strstr($pfSversion, "1.2")) display_top_tabs($tab_array); ?> </table> - <table width="100%" border="0" cellpadding="0" cellspacing="0"> - <tr> - <td class="tabcont" > - <form action="status_ospfd.php" method="post"> - </form> - </td> - </tr> <tr> <td class="tabcont" > + <table width="100%" border="0" cellpadding="6" cellspacing="0"> + <tr> + <td> <?php defCmdT("OpenOSPFD Summary","/usr/local/sbin/ospfctl show summary"); defCmdT("OpenOSPFD Neighbors","/usr/local/sbin/ospfctl show neighbor"); @@ -137,6 +133,8 @@ if(strstr($pfSversion, "1.2")) <?php listCmds(); ?> <?php execCmds(); ?> </div> + </td> + </tr> </td> </tr> </table> |