summaryrefslogtreecommitdiff
path: root/lib/router.php
diff options
context:
space:
mode:
authorBrenda Wallace <shiny@cpan.org>2009-07-20 14:02:52 +1200
committerBrenda Wallace <shiny@cpan.org>2009-07-20 14:02:52 +1200
commit76dd061a34782010d5650d5513bd4d4873e0045c (patch)
treeb944aaa9534f117c66e52faf0476802277c4ebde /lib/router.php
parent590982612206acaa902d7bc87429ec4296bfa17f (diff)
allow full unicode into links for tags
Diffstat (limited to 'lib/router.php')
-rw-r--r--lib/router.php2
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'),