- see footer for list info -<
Taz wrote:

- see footer for list info -<
There are no core files for FB 2.
And those that there were are deprecated by built in functionality like <cfsavecontent>

You just need formurl2attributes.cfm... or more likely a better version like
Stephen's.
And to be honest, over the years, my formurl2attributes tag has reduced itself down to :

<cfscript>
if (NOT StructKeyExists(caller,"attributes")) caller.attributes = StructNew();
StructAppend(caller.attributes,caller.url);
StructAppend(caller.attributes,caller.form,true);
</cfscript>

Form variables take precedence over url variables.

There was so much junk in that tag.... Setting the base href in that tag..... whatever were they thinking!!

Stephen

_______________________________________________

For details on ALL mailing lists and for joining or leaving lists, go to 
http://list.cfdeveloper.co.uk/mailman/listinfo

--
CFDeveloper Sponsors:-
- Hosting provided by www.cfmxhosting.co.uk -<
- Forum provided by www.fusetalk.com -<
- DHTML Menus provided by www.APYCOM.com -<
- Lists hosted by www.Gradwell.com -<
- CFdeveloper is run by Russ Michaels, feel free to volunteer your help -<

Reply via email to