Details
-
Type: Bug
-
Status: Done/Fixed
-
Priority: Major
-
Resolution: Fixed/Completed
-
Affects Version/s: 4.1.2
-
Fix Version/s: 4.1.3
-
Component/s: None
-
Labels:None
Description
In R38542 the change below was made - which seems to be an error as it does the reverse of the intended from what I can see
WAS
// return if we dont have enough information
if ( empty( $params['honor_first_name'] ) &&
empty( $params['honor_last_name' ] ) &&
empty( $params['honor_email'] ) )
Changed to
// return if we dont have enough information
if ( CRM_Utils_Array::value( 'honor_first_name', $params ) &&
CRM_Utils_Array::value( 'honor_last_name', $params ) &&
CRM_Utils_Array::value( 'honor_email', $params ) ) { return null; }