Skip to content

Commit

Permalink
PHP 7.0 bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
spficklin committed Jan 14, 2021
1 parent ff1916a commit a54dc85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tripal_chado/includes/TripalImporter/GFF3Importer.inc
Original file line number Diff line number Diff line change
Expand Up @@ -2593,7 +2593,7 @@ class GFF3Importer extends TripalImporter {
}

// Get the organism object.
[$genus, $species] = explode(':', $organism_attr, 2);
list($genus, $species) = explode(':', $organism_attr, 2);
$organism = new ChadoRecord('organism');
$organism->setValues([
'genus' => $genus,
Expand Down

0 comments on commit a54dc85

Please sign in to comment.