Well, that’s embarrassing. ??
Apparently, I didn’t account for fan pages that didn’t have /pages/ in the url.
Your page, being https://www.facebook.com/hungarband, didn’t match my regex looking for facebook.com/pages/*/*.
I’ve updated it, and it should now work out for you. If you update to 1.1 when it comes out, it’ll work fine.
If you don’t want to wait until the release is approved, you can fix the regex yourself. In the _parseHTML function, change
$urlExp = '/"http:\/\/www.facebook.com\/pages\/(.*?)\/(.*?)"/';
to
$urlExp = '/<div class="connect_top clearfix"><a href="(.*?)" target="_blank">/';
Also change $this->_url = $url[0];
to $this->_url = $url[1];
Sorry about that. I’ll get the fix pushed live asap.