From efabf7d34107fc494ef1009672ef9983f98821ee Mon Sep 17 00:00:00 2001 From: millette Date: Thu, 13 Nov 2008 11:47:41 -0500 Subject: trac31 forgot about twitapi, now fixed. darcs-hash:20081113164741-099f7-c8994bc8902df1cfc9fe62bf6d556a5c3f521b8f.gz --- actions/twitapidirect_messages.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'actions/twitapidirect_messages.php') diff --git a/actions/twitapidirect_messages.php b/actions/twitapidirect_messages.php index 3037890ad..ed2d5c5d1 100644 --- a/actions/twitapidirect_messages.php +++ b/actions/twitapidirect_messages.php @@ -112,7 +112,8 @@ class Twitapidirect_messagesAction extends TwitterapiAction { if (!$content) { $this->client_error(_('No message text!'), $code = 406, $apidata['content-type']); - } else if (mb_strlen($status) > 140) { +// } else if (mb_strlen($status) > 140) { + } else { $status = common_shorten_links($status); if (mb_strlen($status) > 140) { $this->client_error(_('That\'s too long. Max message size is 140 chars.'), @@ -266,4 +267,4 @@ class Twitapidirect_messagesAction extends TwitterapiAction { # XXX: Jabber, SMS notifications... probably queued } -} \ No newline at end of file +} -- cgit v1.2.3-54-g00ecf