Fix PaypalIPN single function to not receive-by-reference
authoreileen <emcnaughton@wikimedia.org>
Sun, 2 Aug 2020 22:05:02 +0000 (10:05 +1200)
committereileen <emcnaughton@wikimedia.org>
Sun, 2 Aug 2020 22:05:02 +0000 (10:05 +1200)
commit84801709be8ad63350136fe620c82b1f9609402e
tree3d3d655aa0cd86d2e3f31a91c19e23ea6fd5c6f0
parent779251ff5ede3a96dd2c7cc1d679929beec509a9
Fix PaypalIPN single function to not receive-by-reference

The function is called from 2 places
- main
- recur

In both cases it is at the end of the function & so the vars, if altered, are not used again.
In the case of main they are internal to the function whereas for recur they are not returned to the
calling function
CRM/Core/Payment/PayPalIPN.php