diff options
-rw-r--r-- | etc/inc/util.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/util.inc b/etc/inc/util.inc index d14bd63..6eb883f 100644 --- a/etc/inc/util.inc +++ b/etc/inc/util.inc @@ -304,7 +304,7 @@ function get_configured_interface_with_descr($only_opt = false, $withdisabled = if ($if == "wan" || $if == "lan" || isset($ifdetail['enable']) || $withdisabled == true) { if($ifdetail['descr'] == "") - $iflist[$if] = $if; + $iflist[$if] = strtoupper($if); else $iflist[$if] = $ifdetail['descr']; } |