eclipse-scout / scout.rt

https://www.eclipse.org/scout/
Eclipse Public License 2.0
34 stars 39 forks source link

Fix toValidFilename for malformed filenames #1138

Closed egloff closed 1 month ago

egloff commented 1 month ago

Filenames in the form of "...ext" were transformed to "ext", leading problems when the extension was relevant for the further use.

Solution is to keep the extension intact and only replace all but the dot right before the extension with '_'.

357297