Fix issue with pages folders validation not accepting uppercase letters

This commit is contained in:
Flavio Copes
2017-01-04 16:35:38 +01:00
parent 61005360a5
commit 4331ab374e
7 changed files with 8 additions and 8 deletions

View File

@@ -2,8 +2,8 @@
## xx/xx/201x
1. [](#bugfix)
* Fixed [#635](https://github.com/getgrav/grav/issues/635) use mv instead of rename as that does not support cross volume operations
* Add a better fix for [#635](https://github.com/getgrav/grav/issues/635), thanks @mahagr for the hint. Overwrites [#1214](https://github.com/getgrav/grav/pull/1214)
* Fixed cross volume file system operations [#635](https://github.com/getgrav/grav/issues/635)
* Fix issue with pages folders validation not accepting uppercase letters
# v1.1.12
## 12/26/2016

View File

@@ -133,7 +133,7 @@ form:
label: PLUGIN_ADMIN.FOLDER_NAME
validate:
type: slug
pattern: '[a-zа0-9_\-]+'
pattern: '[a-zA-Zа-яA-Я0-9_\-]+'
route:
type: select

View File

@@ -24,7 +24,7 @@ form:
validate:
type: slug
required: true
pattern: '[a-zа0-9_\-]+'
pattern: '[a-zA-Zа-яA-Я0-9_\-]+'
route:
type: select

View File

@@ -73,7 +73,7 @@ form:
validate:
type: slug
required: true
pattern: '[a-zа0-9_\-]+'
pattern: '[a-zA-Zа-яA-Я0-9_\-]+'
route:
type: select

View File

@@ -26,7 +26,7 @@ form:
validate:
type: slug
required: true
pattern: '[a-zа0-9_\-]+'
pattern: '[a-zA-Zа-яA-Я0-9_\-]+'
route:
type: select

View File

@@ -19,7 +19,7 @@ form:
validate:
type: slug
required: true
pattern: '[a-zа0-9_\-]+'
pattern: '[a-zA-Zа-яA-Я0-9_\-]+'
route:
type: select

View File

@@ -73,7 +73,7 @@ form:
validate:
type: slug
required: true
pattern: '[a-zа0-9_\-]+'
pattern: '[a-zA-Zа-яA-Я0-9_\-]+'
route:
type: select