summaryrefslogtreecommitdiff
path: root/actions/facebooksettings.php
diff options
context:
space:
mode:
authorCraig Andrews <candrews@integralblue.com>2009-07-09 18:42:19 -0400
committerCraig Andrews <candrews@integralblue.com>2009-07-09 18:42:19 -0400
commit8250006fbfdc120a4766f85ff5d6ee79798d626d (patch)
treed614367ed3adf1e66146ae4e7b9bd1ef7069837d /actions/facebooksettings.php
parent262c581ea771bc8d19bd7050c2f8a2624ea8a3e2 (diff)
When a notice is posted with an attachment, the facebook stream update has media displayed inline, or as links.
http://laconi.ca/trac/ticket/1685
Diffstat (limited to 'actions/facebooksettings.php')
-rw-r--r--actions/facebooksettings.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/facebooksettings.php b/actions/facebooksettings.php
index ee2c279ab..c3b364743 100644
--- a/actions/facebooksettings.php
+++ b/actions/facebooksettings.php
@@ -78,7 +78,7 @@ class FacebooksettingsAction extends FacebookAction
}
}
- if ($this->facebook->api_client->users_hasAppPermission('status_update')) {
+ if ($this->facebook->api_client->users_hasAppPermission('publish_stream')) {
$this->elementStart('form', array('method' => 'post',
'id' => 'facebook_settings'));
@@ -131,7 +131,7 @@ class FacebooksettingsAction extends FacebookAction
$this->elementStart('ul', array('id' => 'fb-permissions-list'));
$this->elementStart('li', array('id' => 'fb-permissions-item'));
- $this->elementStart('fb:prompt-permission', array('perms' => 'status_update',
+ $this->elementStart('fb:prompt-permission', array('perms' => 'publish_stream',
'next_fbjs' => 'document.setLocation(\'' . "$this->app_uri/settings.php" . '\')'));
$this->element('span', array('class' => 'facebook-button'),
sprintf(_('Allow %s to update my Facebook status'), common_config('site', 'name')));