It looks like this:
<!--- Add values --->
<cfloop list="#arguments.append#" index="i">
<cfif isStruct(arguments.preferredContext) and
structKeyExists(arguments.preferredContext, i)>
<cfset link = link &
"&#i#=#urlEncodedFormat(arguments.preferredContext[i])#" />
<cfelse>
<cfset link = link &
"&#i#=#urlEncodedFormat(arguments.eventContext.getValue(i))#" />
</cfif>
</cfloop>
<!--- Add anchor --->
<cfif len(arguments.anchor)>
<cfset link = link & "###arguments.anchor#" />
</cfif>
After that I cfoutput #link# and it looks correct. Where would it get
changed after that?
--
Model-Glue Sites:
Home Page: http://www.model-glue.com
Documentation: http://docs.model-glue.com
Bug Tracker: http://bugs.model-glue.com
Blog: http://www.model-glue.com/blog
You received this message because you are subscribed to the Google
Groups "model-glue" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/model-glue?hl=en