diff options
author | Robin Millette <millette@controlyourself.ca> | 2009-05-13 14:27:32 -0400 |
---|---|---|
committer | Robin Millette <millette@controlyourself.ca> | 2009-05-13 14:27:32 -0400 |
commit | 3b7ee5a5f9a2cd3066aff8a7a12d09878be3b06c (patch) | |
tree | d0f1521040251c6afe522f37f04aade4cd3fa89b /lib/Shorturl_api.php | |
parent | d010d811ba812ccc8fbb1a49fcba7a30226ea779 (diff) |
rewrote short url stuff to handle new file/url classes (redirections, oembed, mimetypes, etc.)
Diffstat (limited to 'lib/Shorturl_api.php')
-rw-r--r-- | lib/Shorturl_api.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Shorturl_api.php b/lib/Shorturl_api.php index fe106cb83..924aa93a8 100644 --- a/lib/Shorturl_api.php +++ b/lib/Shorturl_api.php @@ -22,6 +22,7 @@ if (!defined('LACONICA')) { exit(1); } class ShortUrlApi { protected $service_url; + protected $long_limit = 27; function __construct($service_url) { @@ -39,7 +40,7 @@ class ShortUrlApi } private function is_long($url) { - return strlen($url) >= 30; + return strlen($url) >= $this->long_limit; } protected function http_post($data) { |