Skip to content

Commit 3d55ff9

Browse files
Merge branch '4.3' into 4.4
* 4.3: SCA: minor code tweaks [HttpClient] fallbackto CURLMOPT_MAXCONNECTS when CURLMOPT_MAX_HOST_CONNECTIONS is not available fixed typo [HttpKernel] Fix Apache mod_expires Session Cache-Control issue Fix getFileLinkFormat() to avoid returning the wrong URL in Profiler
2 parents 7ba275a + 41ddd6c commit 3d55ff9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Data/Util/LocaleScanner.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class LocaleScanner
4040
*/
4141
public function scanLocales(string $sourceDir): array
4242
{
43-
$locales = glob($sourceDir.'/*.txt');
43+
$locales = glob($sourceDir.'/*.txt', GLOB_NOSORT);
4444

4545
// Remove file extension and sort
4646
array_walk($locales, function (&$locale) { $locale = basename($locale, '.txt'); });

0 commit comments

Comments
 (0)