CRM-19368 Invalid argument for foreach in /administrator/components/com_civicrm/civicrm/CRM/Report/Form/Contact/Relationship.php

    Details

    • Type: Bug
    • Status: Done/Fixed
    • Priority: Trivial
    • Resolution: Fixed/Completed
    • Affects Version/s: 4.7.11
    • Fix Version/s: 4.7.13
    • Component/s: CiviReport
    • Labels:
    • Documentation Required?:
      None
    • Funding Source:
      Contributed Code

      Description

      _Warning: Invalid argument supplied for foreach() in /administrator/components/com_civicrm/civicrm/CRM/Report/Form/Contact/Relationship.php on line 596 _ if report is viewed via the Joomla front end.

      The attached patch seems to solve the problem, but do you want a full pull request?

        Attachments

          Activity

          [CRM-19368] Invalid argument for foreach in /administrator/components/com_civicrm/civicrm/CRM/Report/Form/Contact/Relationship.php
          Coleman Watts added a comment -

          Stephen Palmstrom yes please, a PR would be helpful to the review/merge process. And could you please do 2 commits to separate the function changes from the comment cleanup?
          In the beginning of your patch you remove ts() from the strings which will break translations of the form - can you explain why that was needed?

          Stephen Palmstrom added a comment -

          Thanks for your feedback. I have never been clear as to the purpose of ts(), but having mentioned translations, I think I understand. Which is the fork from which I should generate the PR? I always find it difficult to decide which should be used.

          Seamus Lee added a comment -

          Hi Stephen Palmstrom I would recommend you generate your fork from the master branch of core. Most of the time you will be working off of that.

          Seamus Lee added a comment -

          Stephen Palmstrom One thing that could make the patch smaller is that just before the foreach you could do something like this

          Unable to find source-code formatter for language: php. Available languages are: actionscript, html, java, javascript, none, sql, xhtml, xml
          $relationshipIds  = is_array($this->_params['relationship_type_id_value']) ?: array($this->_params['relationship_type_id_value']); 
          

          Then do the foreach on $relationshipIds

          Stephen Palmstrom added a comment -

          Good thinking. I tend to use if (...)

          { ... } else { ... }

          as it is more readable, and from my experience with other programming languages. Your suggestion makes excellent sense.

          Seamus Lee added a comment -

          Stephen Palmstrom Stephen even if you wanted to do and if () { }

          you could do if (!is_array($this->_params['relationship_type_id_value'])) {
          $relationshipIds = array($this->_params['relationship_type_id_value']);
          else

          { $relationshipIds = $this->_params['relationship_type_id_value']; }

          The main thing would be is that you wouldn't have to duplicate the $relationship_type stuff etc as then your dealing all the time in arrays

          Stephen Palmstrom added a comment -

          Really good thinking. I just put in a quick workaround, but your ideas are much better.

          Coleman Watts added a comment -

          Stephen Palmstrom have you opened a pull request? It will automatically link from this issue if you put CRM-19368 in the title. Otherwise just paste a link to it here.

          Stephen Palmstrom added a comment -

          Sorry, not yet. One of my jobs for today.

          Stephen Palmstrom added a comment -

          I have now created the PR, I hope to your satisfaction.

          Yashodha Chaku added a comment -

            People

            • Assignee:
              Yashodha Chaku
              Reporter:
              Stephen Palmstrom

              Dates

              • Created:
                Updated:
                Resolved: