diff options
author | Brenda Wallace <shiny@cpan.org> | 2009-07-20 14:02:52 +1200 |
---|---|---|
committer | Brenda Wallace <shiny@cpan.org> | 2009-07-20 14:02:52 +1200 |
commit | 76dd061a34782010d5650d5513bd4d4873e0045c (patch) | |
tree | b944aaa9534f117c66e52faf0476802277c4ebde /lib | |
parent | 590982612206acaa902d7bc87429ec4296bfa17f (diff) |
allow full unicode into links for tags
Diffstat (limited to 'lib')
-rw-r--r-- | lib/router.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/router.php b/lib/router.php index 5e0fcfc94..8e4836497 100644 --- a/lib/router.php +++ b/lib/router.php @@ -211,7 +211,7 @@ class Router array('tag' => '[a-zA-Z0-9]+')); $m->connect('tag/:tag', array('action' => 'tag'), - array('tag' => '[a-zA-Z0-9]+')); + array('tag' => '[\pL\pN_\-\.]{1,64}')); $m->connect('peopletag/:tag', array('action' => 'peopletag'), |