Merge pull request #731 from annando/twitter-notice

Avoid notice due to missing $
This commit is contained in:
Tobias Diekershoff 2018-09-07 09:06:03 +02:00 committed by GitHub
commit 1dc7114bae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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);