]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
add 'always' parameter to common_shorten_links
authorCraig Andrews <candrews@integralblue.com>
Wed, 21 Apr 2010 21:14:25 +0000 (17:14 -0400)
committerCraig Andrews <candrews@integralblue.com>
Wed, 21 Apr 2010 21:14:25 +0000 (17:14 -0400)
lib/util.php

index 81920eb44772d2dce600b3b7c3dbd0b7ff902bf0..e0669a1d56c976a8b3de99dcec1905dd4c47e73a 100644 (file)
@@ -855,10 +855,10 @@ function common_linkify($url) {
     return XMLStringer::estring('a', $attrs, $url);
 }
 
-function common_shorten_links($text)
+function common_shorten_links($text, $always = false)
 {
     $maxLength = Notice::maxContent();
-    if ($maxLength == 0 || mb_strlen($text) <= $maxLength) return $text;
+    if (!$always && ($maxLength == 0 || mb_strlen($text) <= $maxLength)) return $text;
     return common_replace_urls_callback($text, array('File_redirection', 'makeShort'));
 }