Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion twitter_oauth.php
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,10 @@ protected function fetch_tweets($options)
unset($options['consumer_secret']);
$access_token_secret = $options['access_token_secret'];
unset($options['access_token_secret']);


// Unset widget options as they are not needed here and causing a php warning
unset($options['widget']);

// Encode and merge perams
$options = array_map('rawurlencode', $options);
$params = array_merge($oauth, $options);
Expand Down