Explorar el Código

Fix uppercase letters on pb slug

Chenyang hace 1 año
padre
commit
a045255991
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      pagebuilder/helper.go

+ 1 - 1
pagebuilder/helper.go

@@ -10,7 +10,7 @@ import (
 )
 
 var (
-	directoryRe = regexp.MustCompile(`^([\/]{1}[a-z0-9.-]+)+(\/?){1}$|^([\/]{1})$`)
+	directoryRe = regexp.MustCompile(`^([\/]{1}[a-zA-Z0-9.-]+)+(\/?){1}$|^([\/]{1})$`)
 )
 
 const (