I am posting the fix we found for the bug filed here: http://trac.reactorframework.org/reactor/trac.cgi/ticket/72 reactor/core/object.cfc Lines: 334-336 if changed to the following code will resolve the different variations of the value to 'true' or 'false' which the framework's XSL is looking for. This may not be an ideal fix, as I don't know the whole core code intimately; however, your project can continue development using this fix and Doug can see right where the problem is occurring. <cfset xmlField.XmlAttributes["primaryKey"] = IIF(arguments.field.primaryKey, 'true', 'false') /> <cfset xmlField.XmlAttributes["identity"] = IIF(arguments.field.identity, 'true', 'false') /> <cfset xmlField.XmlAttributes["nullable"] = IIF(arguments.field.nullable, 'true', 'false') /> Regards, Shannon Jackson
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- Reactor for ColdFusion Mailing List [email protected] Archives at: http://www.mail-archive.com/reactor%40doughughes.net/ -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
<<attachment: winmail.dat>>

