Revert "Nuke XXX TODO option. Suggested-by: BillM"

This reverts commit 207148139e.
This commit is contained in:
Scott Ullrich 2010-05-11 14:01:13 -04:00
parent 207148139e
commit 10d3ff845c

View File

@ -511,6 +511,26 @@ document.observe("dom:loaded", function() {
XXX: TODO
<select id="options" name="options">
<!-- XXX TODO >
<?
foreach ($types as $key => $val) {
if(isset($pconfig['protocol']) && $pconfig['protocol'] == $key) {
$selected = " selected";
} else {
$selected = "";
}
echo "<option value=\"{$key}\" onclick=\"updateType('{$key}');\"{$selected}>{$val}</option>\n";
}
?>
</select>
< XXX TODO -->
</td>
</tr>
<tr align="left" id="ssl_options_row"<?= $pconfig['protocol'] == "http" ? "" : " style=\"display:none;\""?>>
<td width="22%" valign="top" class="vncellreq">Options</td>
<td width="78%" class="vtable" colspan="2">
XXX: TODO
<!-- XXX TODO >
<select id="options" name="options">
<?
foreach ($types as $key => $val) {
if(isset($pconfig['protocol']) && $pconfig['protocol'] == $key) {