Fix wrong variable name in twitter addon

This commit is contained in:
Hypolite Petovan 2018-01-28 11:41:58 -05:00
parent c0836419b7
commit 01738518a2
1 changed files with 2 additions and 2 deletions

View File

@ -517,7 +517,7 @@ function twitter_post_hook(App $a, &$b)
return; return;
} }
$tweet = new TwitterOAuth($ckey, $csecret, $otoken, $osecret); $connection = new TwitterOAuth($ckey, $csecret, $otoken, $osecret);
$max_char = 280; $max_char = 280;
$msgarr = BBCode::toPlaintext($b, $max_char, true, 8); $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); $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); logger('twitter_post send, result: ' . print_r($result, true), LOGGER_DEBUG);
if ($result->source) { if ($result->source) {