From: Hypolite Petovan Date: Sun, 28 Jan 2018 16:41:58 +0000 (-0500) Subject: Fix wrong variable name in twitter addon X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=01738518a25392aefea8586463121024ae3a1a4c;p=friendica-addons.git Fix wrong variable name in twitter addon --- diff --git a/twitter/twitter.php b/twitter/twitter.php index 38b4728a..50239b8b 100644 --- a/twitter/twitter.php +++ b/twitter/twitter.php @@ -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) {