summaryrefslogtreecommitdiff
path: root/actions/finishopenidlogin.php
diff options
context:
space:
mode:
authorRobin Millette <millette@controlyourself.ca>2009-02-07 19:33:18 +0000
committerEvan Prodromou <evan@controlyourself.ca>2009-02-09 12:45:03 -0500
commit09d8a73eceba11ed021a697b3b8e283c5bc2dc6a (patch)
tree0a074851d1ae68b628c9fbbe9232af83cd52b0bf /actions/finishopenidlogin.php
parent37a1a6b9d8c50c490d4b7fe42b40e2af7d8c00b3 (diff)
trac #1155 ++ replace strlen with mb_strlen for all utf8 strings.
Diffstat (limited to 'actions/finishopenidlogin.php')
-rw-r--r--actions/finishopenidlogin.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/finishopenidlogin.php b/actions/finishopenidlogin.php
index bc9151120..1e7b73a7f 100644
--- a/actions/finishopenidlogin.php
+++ b/actions/finishopenidlogin.php
@@ -242,7 +242,7 @@ class FinishopenidloginAction extends Action
}
}
- if ($sreg['fullname'] && strlen($sreg['fullname']) <= 255) {
+ if ($sreg['fullname'] && mb_strlen($sreg['fullname']) <= 255) {
$fullname = $sreg['fullname'];
}