If a shortened URL begins with http://, don't include it in the shortened url. Saves 7 characters, which is pretty awesome for 140 character max length notices.

This commit is contained in:
Craig Andrews 2009-09-09 22:57:15 -04:00
parent aecdba1ded
commit e2848eb862
1 changed files with 3 additions and 0 deletions

View File

@ -1414,6 +1414,9 @@ function common_shorten_url($long_url)
curl_close($curlh);
if(substr($short_url,0,7)=='http://'){
$short_url = substr($short_url,7);
}
return $short_url;
}