Closed bmango closed 3 years ago
Using php 7.4 I'm getting the error message above. This seems to be coming from line 246 in csvimport.civix.php. I have swapped
if ($entry{0} == '.') {
with
if ($entry[0] == '.') {
Which I think has fixed it
This is fixed in master - I'm cutting a release for civicrm 5.40+ with it in
Using php 7.4 I'm getting the error message above. This seems to be coming from line 246 in csvimport.civix.php. I have swapped
if ($entry{0} == '.') {
with
if ($entry[0] == '.') {
Which I think has fixed it