I have the following code:
<select name='cust_id'>
<option value='[cust.id;block=option]'>[cust.custNaam] ([cust.id])</option>
<option>[data.cust_id; noerr; ope=html; select]</option>
</select>
|
Even though the "data" block is merged first in the php code, the ;select doesn't seem to select when the data has one of the cust_id's in the [cust] block.
I tried to figure out the problem and eventually changed [data.cust_id; ...] to [var.cust_id; ...] and the thing worked.
To save anyone in the future from this error I'm reporting it here, so maybe you can optimize the html plugin so it merges the blocks in the correct order so the data is displayed as expected.