diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-07-11 23:12:27 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-07-11 23:12:27 +0000 |
commit | 15953ad520c44230d5d9edbf8a75b66c7c33132a (patch) | |
tree | 317c68ee0c1b204b1513bd0ffd6d91c07060915f /usr/local/www/diag_resetstate.php | |
parent | bc17d579fb22fa7a3a1de2e59498e0ca5ac247d3 (diff) | |
download | pfsense-15953ad520c44230d5d9edbf8a75b66c7c33132a.zip pfsense-15953ad520c44230d5d9edbf8a75b66c7c33132a.tar.gz |
* Remove Reset States from left menu
* Change Show States to States
* Add tabs to reset states and show states screens
Diffstat (limited to 'usr/local/www/diag_resetstate.php')
-rwxr-xr-x | usr/local/www/diag_resetstate.php | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/usr/local/www/diag_resetstate.php b/usr/local/www/diag_resetstate.php index dc4fc11..a204d15 100755 --- a/usr/local/www/diag_resetstate.php +++ b/usr/local/www/diag_resetstate.php @@ -58,7 +58,18 @@ include("head.inc"); <p class="pgtitle"><?=$pgtitle?></p> <?php if ($input_errors) print_input_errors($input_errors); ?> <?php if ($savemsg) print_info_box($savemsg); ?> - <form action="diag_resetstate.php" method="post" name="iform" id="iform"> + <form action="diag_resetstate.php" method="post" name="iform" id="iform"> + <table width="100%" border="0" cellpadding="0" cellspacing="0"> + <tr><td> + <?php + $tab_array = array(); + $tab_array[0] = array("States", false, "diag_dump_states.php"); + $tab_array[1] = array("Reset States", true, "diag_resetstate.php"); + display_top_tabs($tab_array); + ?> + </td></tr> + <tr><td class="tabcont"> + <table width="100%" border="0" cellpadding="6" cellspacing="0"> <tr> <td width="22%" valign="top" class="vtable"> </td> @@ -90,6 +101,8 @@ include("head.inc"); </td> </tr> </table> + </td></tr> + </table> </form> <?php include("fend.inc"); ?> </body> |