. */ if (!defined('LACONICA')) { exit(1); } require_once(INSTALLDIR.'/lib/facebookaction.php'); class FacebooksettingsAction extends FacebookAction { function handle($args) { parent::handle($args); $this->display(); } function display() { $facebook = $this->get_facebook(); $fbuid = $facebook->require_login(); $fbml = '' .'

Add an Identi.ca box to your profile!

' .'' .'
'; $this->show_header('Settings'); echo $fbml; $this->show_footer(); } }