mirror of
https://github.com/getgrav/grav.git
synced 2026-05-07 22:06:43 +02:00
Fix issue with pages folders validation not accepting uppercase letters
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user