summaryrefslogtreecommitdiffstats
path: root/usr/local/www/services_wol_edit.php
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2008-02-09 05:23:28 +0000
committerScott Ullrich <sullrich@pfsense.org>2008-02-09 05:23:28 +0000
commite47499d578802a7d20fc07380aad9c0f74c779be (patch)
treec07acdee202c1cdef60232198f6101aaf45873e5 /usr/local/www/services_wol_edit.php
parentdc22ae4d0f15af72d6b6623c45ca7450ec04236c (diff)
downloadpfsense-e47499d578802a7d20fc07380aad9c0f74c779be.zip
pfsense-e47499d578802a7d20fc07380aad9c0f74c779be.tar.gz
Do not show LAN interface when it is not present.
Diffstat (limited to 'usr/local/www/services_wol_edit.php')
-rwxr-xr-xusr/local/www/services_wol_edit.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/usr/local/www/services_wol_edit.php b/usr/local/www/services_wol_edit.php
index 1b5c9a6..c4b1646 100755
--- a/usr/local/www/services_wol_edit.php
+++ b/usr/local/www/services_wol_edit.php
@@ -103,7 +103,11 @@ include("head.inc");
<td width="22%" valign="top" class="vncellreq">Interface</td>
<td width="78%" class="vtable">
<select name="interface" class="formfld">
- <?php $interfaces = array('lan' => 'LAN');
+ <?php
+ if($config['interfaces']['lan'])
+ $interfaces = array('lan' => 'LAN');
+ else
+ $interfaces = array('WAN' => 'WAN');
for ($i = 1; isset($config['interfaces']['opt' . $i]); $i++) {
if (isset($config['interfaces']['opt' . $i]['enable']) &&
!$config['interfaces']['opt' . $i]['bridge'])
OpenPOWER on IntegriCloud