foundeo / toscript

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

Quotes getting doubled up inside function call inside string #26

Open bdw429s opened 7 years ago

bdw429s commented 7 years ago
 <cfoutput>
 #headerCell("#results.getTotalPass()#")#
 </cfoutput>

Doubles up the inner quotes and turns it into this:

writeOutput("#headerCell(""#results.getTotalPass()#"")#");
pfreitag commented 7 years ago

Thanks brad I will investigate.