diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2009-03-14 23:58:34 -0400 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2009-03-14 23:59:07 -0400 |
commit | 030f0cb794e2cc477432aa108eceb3dd2a01a4b0 (patch) | |
tree | 1f9509c859f81fff2882385ed96badde3ede27b5 /usr/local | |
parent | 87e07f5242b8018a9c45afee448377d05fbe00c4 (diff) | |
download | pfsense-030f0cb794e2cc477432aa108eceb3dd2a01a4b0.zip pfsense-030f0cb794e2cc477432aa108eceb3dd2a01a4b0.tar.gz |
Move (DHCP)
Diffstat (limited to 'usr/local')
-rw-r--r-- | usr/local/www/includes/functions.inc.php | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/usr/local/www/includes/functions.inc.php b/usr/local/www/includes/functions.inc.php index 4baec53..743a373 100644 --- a/usr/local/www/includes/functions.inc.php +++ b/usr/local/www/includes/functions.inc.php @@ -246,12 +246,8 @@ function get_interfacestatus(){ $data .= "block"; } $data .= ","; - if ($ifinfo['ipaddr']){ + if ($ifinfo['ipaddr']) $data .= htmlspecialchars($ifinfo['ipaddr']); - if ($ifinfo['dhcplink']) { - $data .= " (DHCP)"; - } - } $data .= ","; if ($ifinfo['status'] != "down") $data .= htmlspecialchars($ifinfo['media']); |