]> git.mxchange.org Git - friendica.git/commitdiff
Merge pull request #6461 from annando/contacts-post
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Fri, 18 Jan 2019 08:39:10 +0000 (09:39 +0100)
committerGitHub <noreply@github.com>
Fri, 18 Jan 2019 08:39:10 +0000 (09:39 +0100)
Private posts of contacts hadn't been displayed on the contact's page

mod/nodeinfo.php
mod/statistics_json.php

index edfdda8737bd821a01c4d600d36a1b05dc81c754..71aaae8d4eb8948e3e01f8fe19399c011ce725ae 100644 (file)
@@ -83,10 +83,6 @@ function nodeinfo_init(App $a) {
                        $nodeinfo['services']['inbound'][] = 'gnusocial';
                        $nodeinfo['services']['outbound'][] = 'gnusocial';
                }
-
-               if (Addon::isEnabled('gpluspost') || Addon::isEnabled('buffer')) {
-                       $nodeinfo['services']['outbound'][] = 'google';
-               }
                if (Addon::isEnabled('ijpost')) {
                        $nodeinfo['services']['outbound'][] = 'insanejournal';
                }
index d1d957076f28903442c0ed71adb56f9b37b401ba..e3577083b4f7fe0657e9eb93cb32333c9a59cdbf 100644 (file)
@@ -34,7 +34,6 @@ function statistics_json_init(App $a) {
        $statistics["services"]["buffer"] = Addon::isEnabled("buffer");
        $statistics["services"]["dreamwidth"] = Addon::isEnabled("dwpost");
        $statistics["services"]["gnusocial"] = Addon::isEnabled("statusnet");
-       $statistics["services"]["googleplus"] = Addon::isEnabled("gpluspost");
        $statistics["services"]["libertree"] = Addon::isEnabled("libertree");
        $statistics["services"]["livejournal"] = Addon::isEnabled("ljpost");
        $statistics["services"]["pumpio"] = Addon::isEnabled("pumpio");
@@ -47,7 +46,6 @@ function statistics_json_init(App $a) {
        $statistics["buffer"] = $statistics["services"]["buffer"];
        $statistics["dreamwidth"] = $statistics["services"]["dreamwidth"];
        $statistics["gnusocial"] = $statistics["services"]["gnusocial"];
-       $statistics["googleplus"] = $statistics["services"]["googleplus"];
        $statistics["libertree"] = $statistics["services"]["libertree"];
        $statistics["livejournal"] = $statistics["services"]["livejournal"];
        $statistics["pumpio"] = $statistics["services"]["pumpio"];