Ticket #41 (closed defect: fixed)

Opened 20 years ago

Last modified 19 years ago

Cannot Use argumentcollection as argument in super() calls on MX 6.1

Reported by: dcarabetta@… Owned by: somebody
Priority: normal Milestone: 2.0 Beta 1
Version: Severity: normal
Keywords: Cc:

Description

Due to the super() bug in ColdFusion? MX 6.1, you cannot simply pass the argumentCollection as the super() argument. You must explicitly pass each argument.

The fix is to change ModelGlue?/unity/controller/ReactorORMController.cfc on line 7 from:

<cfset super.init(argumentCollection=arguments) />

to:

<cfset super.init(arguments.ModelGlue?, arguments.name) />

Once that does, the framework loads without issue.

Change History

Changed 20 years ago by joe.rinehart

  • status changed from new to closed
  • resolution set to fixed

Fixed by [157].

Note: See TracTickets for help on using tickets.