readjust name length limits - acl selector

This commit is contained in:
Friendika 2011-01-31 19:53:40 -08:00
parent e2544abd50
commit 2cd1da5462
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ function contact_select($selname, $selclass, $preselected = false, $size = 4, $p
else
$selected = '';
$trimmed = substr($rr['name'],0,24);
$trimmed = substr($rr['name'],0,22);
$o .= "<option value=\"{$rr['id']}\" $selected title=\"{$rr['name']}|{$rr['url']}\" >$trimmed</option>\r\n";
}