Skip to content

Commit

Permalink
Bugfix: Avoid PHP Strict Notice
Browse files Browse the repository at this point in the history
* Creating default object from empty value in /ThinkUp/webapp/plugins/facebook/model/class.FacebookCrawler.php on line 662
  • Loading branch information
ginatrapani committed Jul 18, 2012
1 parent 27f6414 commit dd83141
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/plugins/facebook/model/class.FacebookCrawler.php
Expand Up @@ -659,7 +659,7 @@ private function storeFriends() {

//and users in users table.
$follower_details = FacebookGraphAPIAccessor::apiRequest('/'.$follower_id, $this->access_token);
$follower_details->network = $network;
$follower_details["network"] = $network;

$follower = $this->parseUserDetails($follower_details);
$follower_object = new User($follower);
Expand Down

0 comments on commit dd83141

Please sign in to comment.