diff --git a/facebook.tgz b/facebook.tgz old mode 100755 new mode 100644 index 582d4e5a..2cb406a1 Binary files a/facebook.tgz and b/facebook.tgz differ diff --git a/facebook/README b/facebook/README index ee7e489b..9e381e7d 100755 --- a/facebook/README +++ b/facebook/README @@ -17,6 +17,8 @@ Installing the Friendica/Facebook connector Replace with the settings Facebook gives you. d. Navigate to Set Web->Site URL & Domain -> Website Settings. Set Site URL to yoursubdomain.yourdomain.com. Set Site Domain to your yourdomain.com. + e. Chose "Website" (the url should be your site URL with a trailing slash) in the + "Select how your app integrates with Facebook" section. 2. Enable the facebook plugin by including it in .htconfig.php - e.g. $a->config['system']['addon'] = 'plugin1,plugin2,facebook'; 3. Visit the Facebook Settings section of the "Settings->Plugin Settings" page. diff --git a/piwik.tgz b/piwik.tgz index 2e572dc1..65c92244 100755 Binary files a/piwik.tgz and b/piwik.tgz differ diff --git a/statusnet.tgz b/statusnet.tgz index 3f248156..05d56d88 100755 Binary files a/statusnet.tgz and b/statusnet.tgz differ diff --git a/statusnet/statusnet.php b/statusnet/statusnet.php index a7639926..8f2fbf81 100755 --- a/statusnet/statusnet.php +++ b/statusnet/statusnet.php @@ -327,6 +327,9 @@ function statusnet_settings(&$a,&$s) { $details = $connection->get('account/verify_credentials'); $s .= '

'. t('Currently connected to: ') .''.$details->screen_name.'
'.$details->description.'

'; $s .= '

'. t('If enabled all your public postings can be posted to the associated StatusNet account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry.') .'

'; + if ($a->user['hidewall']) { + $s .= '

'. t('Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to StatusNet will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted.') .'

'; + } $s .= '
'; $s .= ''; $s .= ''; diff --git a/twitter.tgz b/twitter.tgz index 1b93943c..e3fbdec5 100755 Binary files a/twitter.tgz and b/twitter.tgz differ diff --git a/twitter/twitter.php b/twitter/twitter.php index 3b816e3b..fd032463 100755 --- a/twitter/twitter.php +++ b/twitter/twitter.php @@ -183,6 +183,9 @@ function twitter_settings(&$a,&$s) { $details = $connection->get('account/verify_credentials'); $s .= '

'. t('Currently connected to: ') .''.$details->screen_name.'
'.$details->description.'

'; $s .= '

'. t('If enabled all your public postings can be posted to the associated Twitter account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry.') .'

'; + if ($a->user['hidewall']) { + $s .= '

'. t('Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted.') .'

'; + } $s .= '
'; $s .= ''; $s .= '';