Create a new vBulletin Option called 'max_url_display' and set it to the length you want.
then use the following:
PHP Code:
if ($bbuserinfo[usergroupid] == "6") {
if (!trim($link) OR $text == $rightlink)
{
$tmp = unhtmlspecialchars($rightlink);
if (strlen($tmp) > 105 AND !$wysiwygparse)
{
$text = htmlspecialchars_uni(substr($tmp, 0, 35) . '...' . substr($tmp, -15));
}
}
}
else {
if (!trim($link) OR $text == $rightlink)
{
$tmp = unhtmlspecialchars($rightlink);
if (strlen($tmp) > $vboption['max_url_lenght'] AND !$wysiwygparse)
{
$text = htmlspecialchars_uni(substr($tmp, 0, $vboption['max_url_lenght'] - 20) . '...' . substr($tmp, -15));
}
}
}
Not tested.