diff options
author | jim-p <jimp@pfsense.org> | 2010-06-01 16:03:05 -0400 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2010-06-01 16:03:05 -0400 |
commit | 5224b8e7d2bb6f6452d4d66c716c722178cf0ebe (patch) | |
tree | c9df1a869fd78c5c982303b93cc47b2ed6b8a2a1 /usr | |
parent | e85858df666a5464f151630e2ea4f1bbb5f7ba67 (diff) | |
download | pfsense-5224b8e7d2bb6f6452d4d66c716c722178cf0ebe.zip pfsense-5224b8e7d2bb6f6452d4d66c716c722178cf0ebe.tar.gz |
Add status/log icons to DHCP page.
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/services_dhcp.php | 3 | ||||
-rwxr-xr-x | usr/local/www/services_dhcp_edit.php | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/usr/local/www/services_dhcp.php b/usr/local/www/services_dhcp.php index 0bbb3bc..d4259ed 100755 --- a/usr/local/www/services_dhcp.php +++ b/usr/local/www/services_dhcp.php @@ -373,6 +373,9 @@ if ($_GET['act'] == "del") { } $pgtitle = array("Services","DHCP server"); +$statusurl = "diag_dhcp_leases.php"; +$logurl = "diag_logs_dhcp.php"; + include("head.inc"); ?> diff --git a/usr/local/www/services_dhcp_edit.php b/usr/local/www/services_dhcp_edit.php index 86fefe3..e7bc745 100755 --- a/usr/local/www/services_dhcp_edit.php +++ b/usr/local/www/services_dhcp_edit.php @@ -177,6 +177,9 @@ if ($_POST) { } $pgtitle = array("Services","DHCP","Edit static mapping"); +$statusurl = "diag_dhcp_leases.php"; +$logurl = "diag_logs_dhcp.php"; + include("head.inc"); ?> |