
crappy pooo bottoms - 2009-05-06 16:41:13
On line 16 of the twitter.class.php you have:
$this->auth = base64_encode($user . ':' . $pass);
Replace it with:
$this->auth = strtr(base64_encode($user . ':' . $pass) , '+/=' , '-_,');
Now twitter accounts with an "_" in the unsername will work!
Yea!