Skip to content

Commit

Permalink
fix [systopia#51] | deprecated use of curly braces
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcMichalsky committed Aug 31, 2021
1 parent 7b09cd5 commit b0c2a23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion twingle.civix.php
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ function _twingle_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 b0c2a23

Please sign in to comment.