Hey Cliff,
The problem seems to be with xml support disapearing. I managed to fix the issue myself in the code:
‘commented out these lines and added a few to grab the twitter details without using xml
// $to->format = ‘xml’;
// $twitterInfo = new SimpleXMLElement($xml);
$content = $to->get(‘account/verify_credentials’);
$id = $content->id;
$screen_name = $content->screen_name;
$name = $content->name;
$url = $content->url;