Merge pull request #553 from timdufrane/patch-1

Fix none where should be empty string for 802.1p
This commit is contained in:
Jim P 2013-04-10 10:58:06 -07:00
commit e6dc512763

View File

@ -1319,7 +1319,7 @@ $i--): ?>
else
$selected = "";
if ($vprio == "none")
$opts .= "<option value=\"{$vprio}\">{$vprio}</option>\n";
$opts .= "<option value=\"\">{$vprio}</option>\n";
else
$opts .= "<option value=\"{$vprio}\" {$selected}>" . strtoupper($vprio) . "</option>\n";
}