]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
show full utf8 in tags
authorBrenda Wallace <shiny@cpan.org>
Mon, 20 Jul 2009 02:02:26 +0000 (14:02 +1200)
committerBrenda Wallace <shiny@cpan.org>
Mon, 20 Jul 2009 02:02:26 +0000 (14:02 +1200)
lib/util.php

index 9e8ec41d2592a29f46f0aa62195d24ef5ea13fcb..edc396cc0217f650207a7e0e6bf3686efc076c1f 100644 (file)
@@ -404,7 +404,7 @@ function common_render_text($text)
 
     $r = preg_replace('/[\x{0}-\x{8}\x{b}-\x{c}\x{e}-\x{19}]/', '', $r);
     $r = common_replace_urls_callback($r, 'common_linkify');
-    $r = preg_replace('/(^|\(|\[|\s+)#([A-Za-z0-9_\-\.]{1,64})/e', "'\\1#'.common_tag_link('\\2')", $r);
+    $r = preg_replace('/(^|\(|\[|\s+)#([\pL\pN_\-\.]{1,64})/e', "'\\1#'.common_tag_link('\\2')", $r);
     // XXX: machine tags
     return $r;
 }