diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2010-11-21 17:17:25 -0500 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2010-11-21 17:17:25 -0500 |
commit | 3ec02ca50e9651e0cdba2891b4ea71ea5eb4e56c (patch) | |
tree | 30d7f4edd0eb636317aa513952938acce890d313 /config/unbound/unbound_status.php | |
parent | 2946955b50f794bd78385a606bf890c8f79f0be8 (diff) | |
download | pfsense-packages-3ec02ca50e9651e0cdba2891b4ea71ea5eb4e56c.tar.gz pfsense-packages-3ec02ca50e9651e0cdba2891b4ea71ea5eb4e56c.tar.bz2 pfsense-packages-3ec02ca50e9651e0cdba2891b4ea71ea5eb4e56c.zip |
s/TinyDNS/Unbound/
Diffstat (limited to 'config/unbound/unbound_status.php')
-rw-r--r-- | config/unbound/unbound_status.php | 64 |
1 files changed, 32 insertions, 32 deletions
diff --git a/config/unbound/unbound_status.php b/config/unbound/unbound_status.php index 365698c0..c6980a4b 100644 --- a/config/unbound/unbound_status.php +++ b/config/unbound/unbound_status.php @@ -31,7 +31,7 @@ require("guiconfig.inc"); -$pgtitle = "TinyDNS: Status"; +$pgtitle = "Unbound: Status"; include("head.inc"); $pfSversion = str_replace("\n", "", file_get_contents("/etc/version")); @@ -123,37 +123,37 @@ function execCmds() { <?php if ($savemsg) print_info_box($savemsg); ?> <div id="mainlevel"> -<table width="100%" border="0" cellpadding="0" cellspacing="0"> -<?php - $tab_array = array(); - $tab_array[] = array(gettext("Unbound DNS Settings"), false, "/pkg_edit.php?xml=unbound.xml&id=0"); - $tab_array[] = array(gettext("Unbound DNS Status"), true, "/unbound_status.php"); - display_top_tabs($tab_array); -?> -</table> -<table width="100%" border="0" cellpadding="0" cellspacing="0"> - <tr> - <td class="tabcont" > - <form action="unbound_status.php" method="post"> - </form> - </td> - </tr> - <tr> - <td class="tabcont" width="100%"> - <?php - defCmdT("Unbound status", "unbound-control status"); - defCmdT("Unbound stats_noreset", "unbound-control stats_noreset"); - defCmdT("Unbound list_stubs", "unbound-control list_stubs"); - defCmdT("Unbound list_forwards", "unbound-control list_forwards"); - defCmdT("Unbound list_local_zones", "unbound-control list_local_zones"); - defCmdT("Unbound list_local_data", "unbound-control list_local_data"); - listCmds(); - execCmds(); - ?> - </td> - </tr> -</table> -</div> + <table width="100%" border="0" cellpadding="0" cellspacing="0"> + <?php + $tab_array = array(); + $tab_array[] = array(gettext("Unbound DNS Settings"), false, "/pkg_edit.php?xml=unbound.xml&id=0"); + $tab_array[] = array(gettext("Unbound DNS Status"), true, "/unbound_status.php"); + display_top_tabs($tab_array); + ?> + </table> + <table width="100%" border="0" cellpadding="0" cellspacing="0"> + <tr> + <td class="tabcont" > + <form action="unbound_status.php" method="post"> + </form> + </td> + </tr> + <tr> + <td class="tabcont" width="100%"> + <?php + defCmdT("Unbound status", "unbound-control status"); + defCmdT("Unbound stats_noreset", "unbound-control stats_noreset"); + defCmdT("Unbound list_stubs", "unbound-control list_stubs"); + defCmdT("Unbound list_forwards", "unbound-control list_forwards"); + defCmdT("Unbound list_local_zones", "unbound-control list_local_zones"); + defCmdT("Unbound list_local_data", "unbound-control list_local_data"); + listCmds(); + execCmds(); + ?> + </td> + </tr> + </table> + </div> <?php include("fend.inc"); ?> <meta http-equiv="refresh" content="60;url=<?php print $_SERVER['SCRIPT_NAME']; ?>"> </body> |