Skip to content

Commit

Permalink
Merge pull request Project60#53 from sebbrandt87/patch-1
Browse files Browse the repository at this point in the history
Remove deprecated curly bracket addressing
  • Loading branch information
bjendres authored Sep 19, 2021
2 parents 60d2894 + 6d00b14 commit 8cb6e50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion membership.civix.php
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ function _membership_civix_find_files($dir, $pattern) {
if ($dh = opendir($subdir)) {
while (FALSE !== ($entry = readdir($dh))) {
$path = $subdir . DIRECTORY_SEPARATOR . $entry;
if ($entry{0} == '.') {
if ($entry[0] == '.') {
}
elseif (is_dir($path)) {
$todos[] = $path;
Expand Down

0 comments on commit 8cb6e50

Please sign in to comment.