Skip to content

Commit

Permalink
Merge pull request #1286 from tripal/1088-tv3-tripal_feature.theme
Browse files Browse the repository at this point in the history
Issue 1088 curly brace replacement for php8
  • Loading branch information
laceysanderson committed Aug 8, 2022
2 parents d49552b + 4b64d00 commit 88fbb5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions legacy/tripal_feature/theme/tripal_feature.theme.inc
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ function tripal_feature_color_sequence($sequence, $parts, $defline) {
}
}

$newseq .= $sequence{$i};
$newseq .= $sequence[$i];
$seqcount++;
if ($seqcount % 50 == 0) {
$newseq .= "\n";
Expand Down Expand Up @@ -1050,4 +1050,4 @@ function tripal_feature_load_relationships($feature_id, $side = 'as_subject') {
$relationships[$i++] = $rel;
}
return $relationships;
}
}

0 comments on commit 88fbb5a

Please sign in to comment.