Message Text |
I added a multi-select combo box field to wsnlinks (my first so I don't know if this is expected behavior).
Template code appears functional, db is recording my choices, but when I use
{LINKFIELDNAME} the html output is "yes" and not any of the choices I have listed as options.
It's like it's acknowledging there is data in that field but won't list the data.
The data in the db field shows:
, option1, option2,
I added an identical second field, just to make sure it wasn't my error and that field is also spitting out "yes"
Template html created by db is:
<input type="hidden" name="fieldname[123]" value="" /><select multiple="multiple" size="5" name="fieldname[]"> <option value="a">a</option>
<option value="b">b</option>
</select>
I was having this issue in 4.X as well before I upgraded to the 5.0 series today.
Am I doing something wrong? |