Changeset 2999 for branches/5.2


Ignore:
Timestamp:
10/06/10 23:46:11 (20 months ago)
Author:
mattlevine
Message:
  1. Fixing issue with standardPostLogout incorrectly carried into new events.
Location:
branches/5.2/www/requirements/mura
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/5.2/www/requirements/mura/Handler/standardDoActionsHandler.cfc

    r1945 r2999  
    5050                        <cfcase value="logout"> 
    5151                                <cfset application.loginManager.logout()> 
    52                                 <cfset event.getValue('HandlerFactory').get("standardPostLogout").handle(event)> 
     52                                <cfset event.getHandler("standardPostLogout").handle(event)> 
    5353                        </cfcase> 
    5454                         
  • branches/5.2/www/requirements/mura/event.cfc

    r2459 r2999  
    5656        </cfif> 
    5757         
    58         <cfif not structKeyExists(variables.event,"muraScope")> 
    59                 <cfset setValue("MuraScope",createObject("component","mura.MuraScope"))> 
    60                 <cfset getValue('MuraScope').setEvent(this)> 
    61         </cfif> 
     58        <cfset setValue("MuraScope",createObject("component","mura.MuraScope"))> 
     59        <cfset getValue('MuraScope').setEvent(this)> 
    6260         
    6361        <cfreturn this /> 
Note: See TracChangeset for help on using the changeset viewer.