SalmanAzmat / php-twitter

Automatically exported from code.google.com/p/php-twitter
0 stars 0 forks source link

function ratelimit is broken this is the fix. #23

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Line 648 is incorrect

it reads:

return $this->objectify( $out );

however $out is undeclared and so this does nothing at all. I think you want:

return $this->objectify( $this->process( $request ) ); // fixed

Original issue reported on code.google.com by matt...@thanetstar.com on 23 Mar 2009 at 5:53

GoogleCodeExporter commented 8 years ago
Changeset [88] fixes

Original comment by emmenset...@gmail.com on 23 Mar 2009 at 5:58