Only shorten when notice length exceeds max length

This commit is contained in:
Craig Andrews
2010-04-26 15:58:35 -04:00
parent 728a4961d1
commit edc6cf39a0
3 changed files with 16 additions and 13 deletions

View File

@@ -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;
}
}