diff options
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/interfaces.php | 2 | ||||
-rwxr-xr-x | usr/local/www/status_graph.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/www/interfaces.php b/usr/local/www/interfaces.php index 64c9cd0..0ff69de 100755 --- a/usr/local/www/interfaces.php +++ b/usr/local/www/interfaces.php @@ -55,7 +55,7 @@ require_once("vpn.inc"); require_once("xmlparse_attr.inc"); // Get configured interface list -$ifdescrs = get_configured_interface_list(); +$ifdescrs = get_configured_interface_list(false, true); if ($_REQUEST['if']) { $if = $_REQUEST['if']; diff --git a/usr/local/www/status_graph.php b/usr/local/www/status_graph.php index c674cbc..9bf71af 100755 --- a/usr/local/www/status_graph.php +++ b/usr/local/www/status_graph.php @@ -55,7 +55,7 @@ else $height = "200"; // Get configured interface list -$ifdescrs = get_configured_interface_with_descr(); +$ifdescrs = get_configured_interface_with_descr(false, true); $ifdescrs["enc0"] = "IPSEC"; if ($_GET['if']) { |