diff options
author | Zach Copley <zach@controlyourself.ca> | 2009-01-23 06:02:41 +0000 |
---|---|---|
committer | Zach Copley <zach@controlyourself.ca> | 2009-01-23 06:02:41 +0000 |
commit | 94b926be657640f4e0306a3787add27d49c7a566 (patch) | |
tree | 9f9d13913655662992170ba07db2c38a47cf9765 | |
parent | 3af566d1ecb5793324f7395ebec254848c47df09 (diff) |
trac750 small fix to FBJS redirect
-rw-r--r-- | actions/facebooksettings.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/facebooksettings.php b/actions/facebooksettings.php index e40496c18..236460c1c 100644 --- a/actions/facebooksettings.php +++ b/actions/facebooksettings.php @@ -132,7 +132,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', - 'next_fbjs' => 'document.setLocation(\'' . "$this->app_url/settings.php" . '\')')); + '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'))); $this->elementEnd('fb:prompt-permission'); |