From: Brenda Wallace Date: Mon, 20 Jul 2009 02:02:52 +0000 (+1200) Subject: allow full unicode into links for tags X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=76dd061a34782010d5650d5513bd4d4873e0045c;p=quix0rs-gnu-social.git allow full unicode into links for tags --- diff --git a/lib/router.php b/lib/router.php index 5e0fcfc946..8e48364979 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'),