Restricted hidden (and app) file matching to exact matches only

This commit is contained in:
Chris Kankiewicz
2025-07-28 14:08:20 -07:00
parent 1a0b15f8e1
commit fba25b2cba

View File

@@ -63,6 +63,6 @@ class FinderFactory
), $this->hiddenFiles->implode(',')));
}
return Glob::matchStart($this->pattern, (string) $file->getRealPath());
return Glob::match($this->pattern, (string) $file->getRealPath());
}
}