Twitter just went to the 280 character limit.

This commit is contained in:
Michael 2017-11-07 22:44:39 +00:00
parent c3e93f1ed9
commit 2effabed63
2 changed files with 4 additions and 4 deletions

View File

@ -295,7 +295,7 @@ function buffer_send(&$a,&$b) {
break;
case 'twitter':
$send = ($b["extid"] != NETWORK_TWITTER);
$limit = 140;
$limit = 280;
$markup = false;
$includedlinks = true;
$htmlmode = 8;

View File

@ -232,7 +232,7 @@ function twitter_settings(&$a,&$s) {
/***
* 1) Check that we have global consumer key & secret
* 2) If no OAuthtoken & stuff is present, generate button to get some
* 3) Checkbox for "Send public notices (140 chars only)
* 3) Checkbox for "Send public notices (280 chars only)
*/
$ckey = Config::get('twitter', 'consumerkey' );
$csecret = Config::get('twitter', 'consumersecret' );
@ -491,7 +491,7 @@ function twitter_post_hook(&$a,&$b) {
require_once('include/bbcode.php');
$tweet = new TwitterOAuth($ckey,$csecret,$otoken,$osecret);
$max_char = 140;
$max_char = 280;
require_once("include/plaintext.php");
$msgarr = plaintext($a, $b, $max_char, true, 8);
$msg = $msgarr["text"];
@ -729,7 +729,7 @@ function twitter_prepare_body(&$a,&$b) {
return;
if ($b["preview"]) {
$max_char = 140;
$max_char = 280;
require_once("include/plaintext.php");
$item = $b["item"];
$item["plink"] = $a->get_baseurl()."/display/".$a->user["nickname"]."/".$item["parent"];