diff options
author | Eric Helgeson <erichelgeson@gmail.com> | 2009-07-28 20:02:01 -0500 |
---|---|---|
committer | Eric Helgeson <erichelgeson@gmail.com> | 2009-07-28 20:02:01 -0500 |
commit | 3a8a9e292d2ad75a868b1e3173ad242a12c941e9 (patch) | |
tree | 670d182e98f35fad29ac60304f174e4e26bd3189 /lib/util.php | |
parent | ae87369d4204a2f36e38b5a242ad03e1e3a1276c (diff) | |
parent | c85b6155eb004fe556de255482c04b87046c90b3 (diff) |
Merge commit 'origin/0.8.x' into 0.9.x
Diffstat (limited to 'lib/util.php')
-rw-r--r-- | lib/util.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/util.php b/lib/util.php index c7c82dba2..d784bb793 100644 --- a/lib/util.php +++ b/lib/util.php @@ -595,7 +595,8 @@ function common_tag_link($tag) function common_canonical_tag($tag) { - return strtolower(str_replace(array('-', '_', '.'), '', $tag)); + $tag = mb_convert_case($tag, MB_CASE_LOWER, "UTF-8"); + return str_replace(array('-', '_', '.'), '', $tag); } function common_valid_profile_tag($str) |