Details
-
Type: Bug
-
Status: Done/Fixed
-
Priority: Minor
-
Resolution: Fixed/Completed
-
Affects Version/s: 4.2.4
-
Fix Version/s: None
-
Component/s: None
-
Labels:None
Description
Hi Joe,
Per IRC
"JoeMurray - I just looked at a problem to help someone & it seems to be coming from the enhanced event registration module. It's a new site & is on 4.2 but I notice the extension path implies 4.2 version - http://svn.civicrm.org/tools/branches/v4.1/extensions/biz.jmaconsulting.EnhancedEventReg.zip"
I'm creating this for tracking but the thing is - you left (probably bedtime) before I could check - but the copy of CRM_Event_Form_Registration in the extension is cut against 4.1 - it may be as simple as the customer having the wrong version of the extension?
NB - I got past the site's immediate bug by changing
$ppID = CRM_Utils_Array::value('payment_processor_id',
$this->_values['event']
);
to
$ppID = CRM_Utils_Array::value('payment_processor_id',
$this->_values['event'],
CRM_Utils_Array::value('payment_processor',
$this->_values)
);