diff options
author | Zach Copley <zach@controlyourself.ca> | 2009-01-06 15:57:38 -0500 |
---|---|---|
committer | Zach Copley <zach@controlyourself.ca> | 2009-01-06 15:57:38 -0500 |
commit | 4bb522c3faa23a738c1a47440759aff741925d78 (patch) | |
tree | cfef803e5628c6678ffc61796117d1b4637b4290 /actions/facebooksettings.php | |
parent | 5e061d2060702516328a723ad6c9577eb0aa782d (diff) |
trac750 better settings tab workflow
darcs-hash:20090106205738-7b5ce-e80f73130a1f699e8d33f31c63cf90ee259b72cd.gz
Diffstat (limited to 'actions/facebooksettings.php')
-rw-r--r-- | actions/facebooksettings.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/actions/facebooksettings.php b/actions/facebooksettings.php index 469bcfc45..d28b1aa5c 100644 --- a/actions/facebooksettings.php +++ b/actions/facebooksettings.php @@ -69,10 +69,12 @@ class FacebooksettingsAction extends FacebookAction $fbml = '<fb:if-section-not-added section="profile">' .'<h2>Add an Identi.ca box to my profile</h2>' - .'<fb:add-section-button section="profile"/>' + .'<p><fb:add-section-button section="profile"/></p>' .'</fb:if-section-not-added>'; - $fbml .= '<fb:prompt-permission perms="status_update"><h2>Allow Identi.ca to update my Facebook status</h2></fb:prompt-permission>'; + $fbml .= '<p><fb:prompt-permission perms="status_update"><h2>Allow Identi.ca to update my Facebook status</h2></fb:prompt-permission></p>'; + + if ($facebook->api_client->users_hasAppPermission('status_update')) { $fbml .= '<form method="post" id="facebook_settings">' .'<h2>Sync preferences</h2>' @@ -101,6 +103,8 @@ class FacebooksettingsAction extends FacebookAction .'</p>' .'</form>'; + } + echo $fbml; $this->show_footer(); |