From a2cca2426051ed01f739c94b56aa28f49dc097ff Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 7 Sep 2018 05:23:54 +0000 Subject: [PATCH] Avoid notice due to missing $ --- twitter/twitter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twitter/twitter.php b/twitter/twitter.php index 75a0604a..cd1fa9f0 100644 --- a/twitter/twitter.php +++ b/twitter/twitter.php @@ -1712,7 +1712,7 @@ function twitter_fetchhometimeline(App $a, $uid) $item = Item::insert($postarray, false, $notify); $postarray["id"] = $item; - logger('User ' . uid . ' posted home timeline item ' . $item); + logger('User ' . $uid . ' posted home timeline item ' . $item); } } PConfig::set($uid, 'twitter', 'lasthometimelineid', $lastid);