Major Changes to ABML are underway, please see the Reference text, in short at this time:
1) There are no longer ANY ‘singleton’ ABML tags, that is, tags that take the form:
<tag />
Instead now use:
<tag></tag>
2) Boolean Attributes in tags are being replaced with true/false values, that is:
<tag attribute></tag>
is becoming:
<tag attribute=”true”></tag>
or
<tag attribute=”false”></tag> (although this is redundant you can just leave the attribute out)
Change (1) site-wide substitutions have been made (that is, all your tags oughht to have been replaced with the new form automatically by my scripts, hopefully). Change (2) has yet to have the substitutions made, however since you OUGHT NOT to be using the Editor whilst I am making my major updates this ought not to concern you yet. Just remember the language changes for future coding.