Skip to content
Snippets Groups Projects

Issue #3479427: Single Directory Components incompatible with Windows

Open Juraj Nemec requested to merge issue/drupal-3479427:3479427-drupal-sdc-windows into 11.x
1 file
+ 3
0
Compare changes
  • Side-by-side
  • Inline
@@ -83,6 +83,9 @@ public function generateKey(string $name, string $className): string {
}
else {
$name = basename($name);
// Windows does not allow colons, which are used by Single Directory
// Components, in directory or file names.
$name = str_replace(':', '_', $name);
}
// Windows (and some encrypted Linux systems) only support 255 characters in
Loading