Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.55K
1 Posted Topic
Re: See my comments at: [URL="http://www.bennadel.com/blog/1776-Creating-Globally-Accessible-User-Defined-Functions-In-ColdFusion-Safer-Version-.htm?&_=0.905060270905669#comments_24513"]Creating Globally Accessible User Defined Functions In ColdFusion (Safer Version)[/URL] Here was the final solution: [Put in application.cfc:] [CODE] <cffunction name="onApplicationStart"> . . . snip . . . <cfscript> application.globalmethods = structnew(); keys = structkeylist(this); for (i=1; i LTE listlen(keys); i=i+1) { key = listgetat(keys,i); if … |
The End.