summaryrefslogtreecommitdiff
path: root/plugins/ClientSideShorten/shorten.php
diff options
context:
space:
mode:
authorCraig Andrews <candrews@integralblue.com>2010-04-26 15:58:35 -0400
committerCraig Andrews <candrews@integralblue.com>2010-04-26 15:59:13 -0400
commitedc6cf39a0acf9ac77626bb4c11a60a11878d65d (patch)
tree51473701b99451058ae94d72e16b4a86a935637c /plugins/ClientSideShorten/shorten.php
parent728a4961d1ec4f0dda7fed100f49a4d281bca161 (diff)
Only shorten when notice length exceeds max length
Diffstat (limited to 'plugins/ClientSideShorten/shorten.php')
-rw-r--r--plugins/ClientSideShorten/shorten.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ClientSideShorten/shorten.php b/plugins/ClientSideShorten/shorten.php
index 4905c62c2..07c19e2e7 100644
--- a/plugins/ClientSideShorten/shorten.php
+++ b/plugins/ClientSideShorten/shorten.php
@@ -61,7 +61,7 @@ class ShortenAction extends Action
{
parent::handle($args);
header('Content-Type: text/plain');
- $shortened_text = common_shorten_links($this->text, true);
+ $shortened_text = common_shorten_links($this->text);
print $shortened_text;
}
}