diff options
author | smos <seth.mos@dds.nl> | 2011-09-07 13:06:57 +0200 |
---|---|---|
committer | smos <seth.mos@dds.nl> | 2011-09-07 13:06:57 +0200 |
commit | 9b55203f878786a2bbd0b7d5dda4474d2533695b (patch) | |
tree | 866e1347657964613a3640861608aa17238c63ba | |
parent | fce938b3a32ed071edf9aba6b1f07ec08a82a743 (diff) | |
download | pfsense-9b55203f878786a2bbd0b7d5dda4474d2533695b.zip pfsense-9b55203f878786a2bbd0b7d5dda4474d2533695b.tar.gz |
Show the hexadecimal value of the integer for readability
-rwxr-xr-x | usr/local/www/interfaces.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/interfaces.php b/usr/local/www/interfaces.php index 7d98556..7a42482 100755 --- a/usr/local/www/interfaces.php +++ b/usr/local/www/interfaces.php @@ -1574,7 +1574,7 @@ $types6 = array("none" => gettext("None"), "staticv6" => gettext("Static IPv6"), if($i <> $number) { echo "<option value=\"{$i}\" "; if ($i == $pconfig['dhcp6-pd-sla-id']) echo "selected"; - echo ">" . $i . "</option>"; + echo ">" . dechex($i) . "</option>"; } $i++; } |