I am attempting to troubleshoot an auction script and ran into the following <input
tag:
<input type="checkbox" name="custom_end" {CUSTOM_END}>
where the template variable {CUSTOM_END} may = checked, 0, 1 or null ''
I cannot find this usage in html documentation. I see that all attributes of tag input must be defined, ie value="something" type="text" etc
What is the purpose of the undeclared template variable? Is this a non-standard usage?