function _shorten_shorturl in Shorten URLs 6
Helps get a shortened URL via the Short URLs module.
1 string reference to '_shorten_shorturl'
- shorten_shorten_service in ./
shorten.module - Implementation of hook_shorten_service().
File
- ./
shorten.module, line 312 - Shortens URLs via external services.
Code
function _shorten_shorturl($original) {
return shorturl_shorten($original, TRUE);
}