Shouldn't this work? The select box is empty and when i look at the html code the name comes up fine but the options dont come up at all.
I changed this:
Code:
<td>
<input type=text name="extra_array[{$extra_fields[field].fieldid}][value]" size=24 value="{$extra_fields[field].value|escape:"htmlall"}">
</td>
To this:
Code:
<td>
<select name="extra_array[{$extra_fields[field].fieldid}][value]">
<option value="{$extra_fields[field].value|escape:"htmlall"}">
{$extra_fields[field].value|escape:"htmlall"}
</option>
</select>
</td>