Don't replace URLs if 'shortened' version is longer, unless forced

This commit is contained in:
Evan Prodromou 2011-09-26 17:05:35 -04:00
parent a1fd6e0fa4
commit 540c545399
1 changed files with 5 additions and 1 deletions

View File

@ -2163,7 +2163,11 @@ function common_shorten_url($long_url, User $user=null, $force = false)
} else {
$shortenedUrl = common_local_url('redirecturl',
array('id' => $f->id));
return $shortenedUrl;
if ((mb_strlen($shortenedUrl) < mb_strlen($long_url)) || $force) {
return $shortenedUrl;
} else {
return $long_url;
}
}
} else {
return $long_url;