]> _ Git - cubist_cms-back.git/commitdiff
wait #6776 @0.5
authorVincent Vanwaelscappel <vincent@cubedesigners.com>
Thu, 7 Mar 2024 16:47:53 +0000 (17:47 +0100)
committerVincent Vanwaelscappel <vincent@cubedesigners.com>
Thu, 7 Mar 2024 16:47:53 +0000 (17:47 +0100)
src/resources/views/fields/external_path.blade.php

index 99aa3f77a4aa85d5e345104eacb3d4ecf1bf3aa7..76dbcc625d79190544bd4a3f5d3100d638f6f59e 100644 (file)
@@ -111,7 +111,7 @@ $servers = $serversClass::getAllServers();
                     .normalize('NFKD')            // The normalize() using NFKD method returns the Unicode Normalization Form of a given string.
                     .replace(/\s+/g, '-')         // Replace spaces with -
                     .replace(/[^\w\-]+/g, '')     // Remove all non-word chars
-                    .replace(/\_/g, '-')           // Replace _ with -
+//                    .replace(/\_/g, '-')           // Replace _ with -
                     .replace(/\-\-+/g, '-')       // Replace multiple - with single -
                     //.replace(/\-$/g, '')         // Remove trailing -
                     .replace(/fwdslash/g,'/');