Closed GoogleCodeExporter closed 8 years ago
Scratch that. My fault.
What really fixed my problem is the following patch.
Original comment by saschaacarlin
on 4 May 2009 at 3:32
Attachments:
if( !in_array( $this->type, array( 'xml','json' ) ) )
return false;
$request = 'http://twitter.com/statuses/update.' . $this->type;
if( $replying_to ) :
$postargs = 'status=' . rawurlencode($status) . '&in_reply_to_status_id=' .
rawurlencode($replying_to);
else :
$postargs = 'status=' . rawurlencode($status);
endif;
return $this->objectify( $this->process( $request, $postargs ) );
Original comment by three.e...@gmail.com
on 19 May 2009 at 2:55
r100 fixes trunk and r99 fixes branches/1.1
Original comment by emmenset...@gmail.com
on 16 Jun 2009 at 6:07
Call me stupid but applying the fix causes this:
Warning: Invalid argument supplied for foreach() in
/www/htdocs/twitter/classes/class.twitter.php on line 718
The line in question is:
>> foreach($postargs as $key => $value)
Original comment by dien...@gmail.com
on 29 Jun 2009 at 7:57
Original issue reported on code.google.com by
saschaacarlin
on 29 Apr 2009 at 12:51