foundeo / toscript

Converts Tag based CFML to CFML Script
GNU General Public License v3.0
20 stars 9 forks source link

mixed case cfml tags confusion #38

Closed zspitzer closed 3 years ago

zspitzer commented 5 years ago
<Cfif arguments.throw_exception>
    <cfreturn true>
<cfelse>
    <cfreturn false>
</cfif>

is returned as

if ( Cfif arguments.throw_exception ) {
    return true;
} else {
    return false;
}
pfreitag commented 3 years ago

looks like this was fixed.