Move TwitterOAuth to composer Part 1: Twitter #505

Merged
MrPetovan merged 5 commits from task/4116-move-twitteroauth-to-composer into develop 2018-01-28 19:19:04 +01:00
Showing only changes of commit 01738518a2 - Show all commits

View file

@ -517,7 +517,7 @@ function twitter_post_hook(App $a, &$b)
return;
}
$tweet = new TwitterOAuth($ckey, $csecret, $otoken, $osecret);
$connection = new TwitterOAuth($ckey, $csecret, $otoken, $osecret);
$max_char = 280;
$msgarr = BBCode::toPlaintext($b, $max_char, true, 8);
@ -593,7 +593,7 @@ function twitter_post_hook(App $a, &$b)
$post["in_reply_to_status_id"] = substr($orig_post["uri"], 9);
}
$result = $tweet->post($url, $post);
$result = $connection->post($url, $post);
logger('twitter_post send, result: ' . print_r($result, true), LOGGER_DEBUG);
if ($result->source) {