diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2010-11-06 14:38:38 -0400 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2010-11-06 14:38:38 -0400 |
commit | 9c3cac0cb553e1610948e78dd119c1b0fcb04224 (patch) | |
tree | 9783b98162c9a16f42a0156f0007c15d2901e7fa | |
parent | 5aaae0e32e633c01bb757afba98b74885fa9a443 (diff) | |
download | pfsense-9c3cac0cb553e1610948e78dd119c1b0fcb04224.zip pfsense-9c3cac0cb553e1610948e78dd119c1b0fcb04224.tar.gz |
Interface names should appear as uppercase
-rwxr-xr-x | usr/local/www/status_graph.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/status_graph.php b/usr/local/www/status_graph.php index 4347da8..9c95510 100755 --- a/usr/local/www/status_graph.php +++ b/usr/local/www/status_graph.php @@ -173,7 +173,7 @@ if (isset($config['ipsec']['enable']) || isset($config['ipsec']['mobileclients'] foreach ($ifdescrs as $ifn => $ifd) { echo "<option value=\"$ifn\""; if ($ifn == $curif) echo " selected"; - echo ">" . htmlspecialchars($ifd) . "</option>\n"; + echo ">" . strtoupper(htmlspecialchars($ifd)) . "</option>\n"; } ?> </select> |