From 01738518a25392aefea8586463121024ae3a1a4c Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Sun, 28 Jan 2018 11:41:58 -0500 Subject: [PATCH] Fix wrong variable name in twitter addon --- twitter/twitter.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) { -- 2.39.2