Ticket #90 (closed defect: wontfix)
bug slips by CF, breaks on BD
| Reported by: | charlie@… | Owned by: | somebody |
|---|---|---|---|
| Priority: | low | Milestone: | 2.0.x-next-patch |
| Version: | 2.0.304 | Severity: | minor |
| Keywords: | bluedragon | Cc: |
Description
Folks, line 16 of the modelglue.cfm file has this:
<cfparam name="ModelGlue?_LOCAL_COLDSPRING_PATH" type="string" default="#expandPath(".") & "/config/ColdSpring.xml"#" />
which works fine on CFMX but breaks on BD. Notice the separation of the # from the end of the expandpath function. It would seem it should be there, rather than the end of the line.
And indeed, this works on BD:
<cfparam name="ModelGlue?_LOCAL_COLDSPRING_PATH" type="string" default="#expandPath(".")# & "/config/ColdSpring.xml"" />
but it fails on CFMX. The solution that works on both is this:
<cfparam name="ModelGlue?_LOCAL_COLDSPRING_PATH" type="string" default='#expandPath(".")# & "/config/ColdSpring.xml"' />
I've assigned this as lower priority and minor severity only because, after fixing that, it breaks on another line. I won't for now be able to go through figuring it all out.
![(please configure the [header_logo] section in trac.ini)](/ModelGlue.com/trac.cgi/chrome/site/your_project_logo.png)