Changeset 272

Show
Ignore:
Timestamp:
12/15/06 18:53:31 (2 years ago)
Author:
scorfield
Message:

Fixes #164 by adding an event object that wraps attributes scope.

Location:
framework/trunk
Files:
1 added
3 modified

Legend:

Unmodified
Added
Removed
  • framework/trunk/fusebox5.cfm

    r258 r272  
    5959<cfset structAppend(attributes,URL,true) /> 
    6060<cfset structAppend(attributes,form,true) /> 
     61<!--- FB51: ticket 164: add OO synonym for attributes scope ---> 
     62<cfparam name="variables.event" default="#createObject('component','fuseboxEvent').init(attributes)#" /> 
    6163 
    6264<!--- FB5: myFusebox is an object but has FB41-compatible public properties ---> 
  • framework/trunk/fuseboxApplication.cfc

    r270 r272  
    9393                                        hint="I am the myFusebox data structure." /> 
    9494                 
    95                 <!--- fixed ticket 139 again ---> 
     95                <!--- fixed ticket 164 ---> 
    9696                <cfset var myVersion = "5.0.1.#REReplace('$LastChangedRevision$','[^0-9]','','all')#" /> 
    9797 
  • framework/trunk/myFusebox.cfc

    r270 r272  
    5151<cfcomponent hint="I provide the per-request myFusebox data structure and some convenience methods."> 
    5252        <cfscript> 
    53         // fixed ticket 139 again 
     53        // fixed ticket 164 
    5454        this.version.runtime     = "5.0.1.#REReplace('$LastChangedRevision$','[^0-9]','','all')#"; 
    5555