Skip to content

Commit cbbe195

Browse files
ervaudeMarc Neuhaus
authored and
Marc Neuhaus
committed
[BUGFIX] Use glob() to find cache files in SimpleFileCache
Resolves: TYPO3#206
1 parent 6decb64 commit cbbe195

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Core/Cache/SimpleFileCache.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ public function flush($name = null)
113113
*/
114114
protected function getCachedFilenames()
115115
{
116-
return scandir($this->directory . '*.php');
116+
return glob($this->directory . '*.php');
117117
}
118118

119119
/**

0 commit comments

Comments
 (0)