diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2008-10-12 21:29:48 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2008-10-12 21:29:48 +0000 |
commit | 30d4c469bf09d746e47dde098a9f0e01aa563d09 (patch) | |
tree | a9ce087344274c915c9cbd4269dab2626ec0f471 /usr | |
parent | d4da62498807b8267b62e61f752ed9737c1de5ff (diff) | |
download | pfsense-30d4c469bf09d746e47dde098a9f0e01aa563d09.zip pfsense-30d4c469bf09d746e47dde098a9f0e01aa563d09.tar.gz |
Do not hard code white
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/firewall_virtual_ip.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/firewall_virtual_ip.php b/usr/local/www/firewall_virtual_ip.php index a9ed3bf..78b1f28 100755 --- a/usr/local/www/firewall_virtual_ip.php +++ b/usr/local/www/firewall_virtual_ip.php @@ -162,7 +162,7 @@ include("head.inc"); <? if($vipent['mode'] == "proxyarp") echo "<img src='./themes/".$g['theme']."/images/icons/icon_parp.gif' title='Proxy ARP'>"; elseif($vipent['mode'] == "carp" or $vipent['mode'] == "carpdev-dhcp") echo "<img src='./themes/".$g['theme']."/images/icons/icon_carp.gif' title='CARP'>"; elseif($vipent['mode'] == "other") echo "<img src='./themes/".$g['theme']."/images/icons/icon_other.gif' title='Other'>"; elseif($vipent['mode'] == "ipalias") echo "<img src='./themes/".$g['theme']."/images/icons/icon_ipalias.gif' title='IP Alias'>";?> </td> <td class="listbg" ondblclick="document.location='firewall_virtual_ip_edit.php?id=<?=$i;?>';"> - <font color="#FFFFFF"><?=htmlspecialchars($vipent['descr']);?> + <?=htmlspecialchars($vipent['descr']);?> </td> <td class="list" nowrap> <table border="0" cellspacing="0" cellpadding="1"> |