From fd4ff9eec07c2a24a82c2cde7506d020650f9626 Mon Sep 17 00:00:00 2001 From: Sunil Pawar Date: Mon, 18 Sep 2023 16:13:40 +0530 Subject: [PATCH] Update multipleeventreg.civix.php remove curly braces --- multipleeventreg.civix.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/multipleeventreg.civix.php b/multipleeventreg.civix.php index 07b410b..abc8785 100644 --- a/multipleeventreg.civix.php +++ b/multipleeventreg.civix.php @@ -244,7 +244,7 @@ function _multipleeventreg_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;