While sorting a bug issue out today, I've noted that within INVOICE DELIVERY COUNTRY LIST the code for BEFORE SINGLE ITEM IS SET TO:
<input type="hidden" id="lstInvoiceCountry" name="LocationInvoiceCountry"
On initial impression this looks like a typo? As an INPUT tag must be closed with an /> to make the code be:
<input type="hidden" id="lstInvoiceCountry" name="LocationInvoiceCountry" />
Now am I right? Or does this TAG get closed somewhere within the code? I've noted other versions of older Actinic have the same code. Does this mean I'm wrong and it's not a typo bug?
As the tag is hidden you wouldnt seen the effect either way, but would welcome your thoughts.
<input type="hidden" id="lstInvoiceCountry" name="LocationInvoiceCountry"
On initial impression this looks like a typo? As an INPUT tag must be closed with an /> to make the code be:
<input type="hidden" id="lstInvoiceCountry" name="LocationInvoiceCountry" />
Now am I right? Or does this TAG get closed somewhere within the code? I've noted other versions of older Actinic have the same code. Does this mean I'm wrong and it's not a typo bug?
As the tag is hidden you wouldnt seen the effect either way, but would welcome your thoughts.
Comment