Merge branch '4.13' into 4

This commit is contained in:
Steve Boyd 2023-06-14 16:08:53 +12:00
commit c2c5db0da0
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ class Path
} }
// Cleanup and join all parts // Cleanup and join all parts
$parts = array_filter(array_map('trim', $parts ?? [])); $parts = array_filter(array_map('trim', array_filter($parts ?? [])));
$fullPath = static::normalise(implode(DIRECTORY_SEPARATOR, $parts)); $fullPath = static::normalise(implode(DIRECTORY_SEPARATOR, $parts));
// Protect against directory traversal vulnerability (OTG-AUTHZ-001) // Protect against directory traversal vulnerability (OTG-AUTHZ-001)

View File

@ -27,7 +27,7 @@ class i18nTextCollectorTask extends BuildTask
- locale: Sets default locale - locale: Sets default locale
- writer: Custom writer class (defaults to i18nTextCollector_Writer_RailsYaml) - writer: Custom writer class (defaults to i18nTextCollector_Writer_RailsYaml)
- module: One or more modules to limit collection (comma-separated) - module: One or more modules to limit collection (comma-separated)
- merge: Merge new strings with existing ones already defined in language files (default: FALSE) - merge: Merge new strings with existing ones already defined in language files (default: TRUE)
"; ";
/** /**