Uploaded image for project: 'CiviCRM'
  1. CiviCRM
  2. CRM-10286

Honor contact creation no longer works on Contribution form

    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'] ) )

      { return null; }


      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; }

        Attachments

          Activity

            People

            • Assignee:
              dgg David Greenberg
              Reporter:
              eileen Eileen McNaughton
            • Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

              Dates

              • Created:
                Updated:
                Resolved: