jdolitsky / AppDotNetPHP

PHP library for the App.net Stream API
34 stars 19 forks source link

Err in getFollowers #13

Closed ghost closed 12 years ago

ghost commented 12 years ago

Line 412: missing a ? mark.

return $this->httpGet($this->_baseUrl.'users/'.$user_id.'/followers'.http_build_query($params));

should be

return $this->httpGet($this->_baseUrl.'users/'.$user_id.'/followers?'.http_build_query($params));

ravisorg commented 12 years ago

Duoh! That was my fault. Sorry! Fixed!