Skip to content

Commit

Permalink
#372 - Accept any characters none white-space characters
Browse files Browse the repository at this point in the history
  • Loading branch information
johanjanssens committed Jun 20, 2020
1 parent f1fab39 commit 63d55e8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ protected function _initialize(KObjectConfig $config)
'*alnum' => '[0-9A-Za-z]+(,[0-9A-Za-z]+)*',
'alpha' => '[A-Za-z]++',
'*alpha' => '[A-Za-z]+(,[A-Za-z]+)*',
'id' => '[0-9]++[-]++[0-9A-Za-z-]++',
'slug' => '(?![0-9]++-)[^-][0-9A-Za-z-]++',
'id' => '[0-9]++[-]++[\S]++',
'slug' => '(?![0-9]++-)[^-][\S]++',
'*' => '.+?',
'**' => '.++',
'' => '[^/\.]++',
Expand Down

0 comments on commit 63d55e8

Please # to comment.