veda-consulting-company / uk.co.vedaconsulting.mailchimp

Other
23 stars 43 forks source link

Array and string offset access syntax with curly braces is deprecated #348

Open bmango opened 2 years ago

bmango commented 2 years ago

Using php 7.4 I'm getting the error message above. This seems to be coming from line 246 in mailchimp.civix.php. I have swapped

if ($entry{0} == '.') {

with

if ($entry[0] == '.') {

Which I think has fixed it