diff options
author | Friendika <info@friendika.com> | 2011-02-24 03:48:21 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-02-24 03:48:21 -0800 |
commit | 8ed085c64e4fb097394d0cc93f8744606c15527b (patch) | |
tree | eeb190cb8f1e2d999ba97766bf413fd9ac83ad89 /include | |
parent | 56415329368d3c93b64ad6490d56a2f0ff82ab68 (diff) | |
download | volse-hubzilla-8ed085c64e4fb097394d0cc93f8744606c15527b.tar.gz volse-hubzilla-8ed085c64e4fb097394d0cc93f8744606c15527b.tar.bz2 volse-hubzilla-8ed085c64e4fb097394d0cc93f8744606c15527b.zip |
don't truncate names across multi-byte char sequences
Diffstat (limited to 'include')
-rw-r--r-- | include/acl_selectors.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/acl_selectors.php b/include/acl_selectors.php index 94f51a9ff..9467531d9 100644 --- a/include/acl_selectors.php +++ b/include/acl_selectors.php @@ -26,7 +26,7 @@ function group_select($selname,$selclass,$preselected = false,$size = 4) { $selected = " selected=\"selected\" "; else $selected = ''; - $trimmed = substr($rr['name'],0,12); + $trimmed = mb_substr($rr['name'],0,12); $o .= "<option value=\"{$rr['id']}\" $selected title=\"{$rr['name']}\" >$trimmed</option>\r\n"; } @@ -89,7 +89,7 @@ function contact_select($selname, $selclass, $preselected = false, $size = 4, $p else $selected = ''; - $trimmed = substr($rr['name'],0,22); + $trimmed = mb_substr($rr['name'],0,22); $o .= "<option value=\"{$rr['id']}\" $selected title=\"{$rr['name']}|{$rr['url']}\" >$trimmed</option>\r\n"; } |