From: fermionic Date: Sun, 10 Mar 2013 22:24:27 +0000 (-0700) Subject: Merge pull request #646 from annando/master X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=91a6a1cb2501fdaf9a5ed792b70cf08c2b41591f;hp=5d3613c8bc057392d3d43986357da6dddf60ce85;p=friendica.git Merge pull request #646 from annando/master OStatus conversations, "vier" and diaspora android client --- diff --git a/include/api.php b/include/api.php index 6001556665..45cad9ca8c 100644 --- a/include/api.php +++ b/include/api.php @@ -1433,7 +1433,7 @@ return api_apply_template('test', $type, array('$ok' => $ok)); } - api_register_func('api/help/test','api_help_test',true); + api_register_func('api/help/test','api_help_test',false); /** * https://dev.twitter.com/docs/api/1/get/statuses/friends diff --git a/library/twitteroauth.php b/library/twitteroauth.php index 7f3dcba4d7..009ad56bd4 100644 --- a/library/twitteroauth.php +++ b/library/twitteroauth.php @@ -18,7 +18,7 @@ class TwitterOAuth { /* Contains the last API call. */ public $url; /* Set up the API root URL. */ - public $host = "https://api.twitter.com/1/"; + public $host = "https://api.twitter.com/1.1/"; /* Set timeout default. */ public $timeout = 30; /* Set connect timeout. */ diff --git a/mod/admin.php b/mod/admin.php index e4677b29c8..66a5db1df8 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -512,7 +512,7 @@ function admin_page_site(&$a) { '$newuser_private' => array('newuser_private', t("Private posts by default for new users"), get_config('system','newuser_private'), t("Set default post permissions for all new members to the default privacy group rather than public.")), '$enotify_no_content' => array('enotify_no_content', t("Don't include post content in email notifications"), get_config('system','enotify_no_content'), t("Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure.")), '$private_addons' => array('private_addons', t("Disallow public access to addons listed in the apps menu."), get_config('config','private_addons'), t("Checking this box will restrict addons listed in the apps menu to members only.")), - '$disable_embedded' => array('disable_embedded', t("Don't embed private images in posts"), get_config('system','disable_embedded'), t("Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos won't be able to see them unless they first visit the owner's profile page, or unless they have the redir_private_img plugin enabled.")), + '$disable_embedded' => array('disable_embedded', t("Don't embed private images in posts"), get_config('system','disable_embedded'), t("Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while.")), '$no_multi_reg' => array('no_multi_reg', t("Block multiple registrations"), get_config('system','block_extended_register'), t("Disallow users to register additional accounts for use as pages.")), '$no_openid' => array('no_openid', t("OpenID support"), !get_config('system','no_openid'), t("OpenID support for registration and logins.")),