CRM-13108 - Fix warning in CRM_Utils_File::findFiles (from rubofvil)
[civicrm-core.git] / CRM / Utils / File.php
index 44350a47d01e53e6df3b2b1584634ff0ebfc9065..5d068bf18d4e6a1a1c2d295a5e56294e8256fd43 100644 (file)
@@ -529,9 +529,11 @@ HTACCESS;
     $result = array();
     while (!empty($todos)) {
       $subdir = array_shift($todos);
-      foreach (glob("$subdir/$pattern") as $match) {
-        if (!is_dir($match)) {
-          $result[] = $match;
+      if (is_array(glob("$subdir/$pattern"))) {
+        foreach (glob("$subdir/$pattern") as $match) {
+          if (!is_dir($match)) {
+            $result[] = $match;
+          }
         }
       }
       $dh = opendir($subdir);