X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fsiteprofile.php;h=569a4bbaf8d56f9eb987821784352822e137c8f2;hb=ccfeefc874686101f7425cc9d1bdd3841c4cba09;hp=d3ab4c9705df529e445252b84eceb390b2bd9101;hpb=220b51d8be61e9bd316567f3ad03fffdbc4b7526;p=quix0rs-gnu-social.git diff --git a/lib/siteprofile.php b/lib/siteprofile.php index d3ab4c9705..569a4bbaf8 100644 --- a/lib/siteprofile.php +++ b/lib/siteprofile.php @@ -110,11 +110,8 @@ class PublicSite extends SiteProfileSettings 'plugins' => array( 'core' => self::corePlugins(), 'default' => array_merge(self::defaultPlugins(), array( - 'Directory' => array(), 'ExtendedProfile' => array(), - 'OStatus' => array(), 'RegisterThrottle' => array(), - 'WebFinger' => array(), )) ), 'discovery' => array('cors' => true) // Allow Cross-Origin Resource Sharing for service discovery (host-meta, XRD, etc.) @@ -147,11 +144,12 @@ class PrivateSite extends SiteProfileSettings 'plugins' => array( 'core' => self::corePlugins(), 'default' => array_merge(self::defaultPlugins(), array( - 'Directory' => array(), 'ExtendedProfile' => array(), 'EmailRegistration' => array(), 'MobileProfile' => array(), - )) + )), + 'disable-OStatus' => 1, + 'disable-WebFinger' => 1, ), 'profile' => array('delete' => 'true'), 'license' => array('type' => 'private'), @@ -199,9 +197,6 @@ class CommunitySite extends SiteProfileSettings 'plugins' => array( 'core' => self::corePlugins(), 'default' => array_merge(self::defaultPlugins(), array( - 'Directory' => array(), - 'OStatus' => array(), - 'WebFinger' => array(), )) ), 'discovery' => array('cors' => true) // Allow Cross-Origin Resource Sharing for service discovery (host-meta, XRD, etc.) @@ -235,11 +230,8 @@ class SingleuserSite extends SiteProfileSettings 'core' => self::corePlugins(), 'default' => array_merge(self::defaultPlugins(), array( 'MobileProfile' => array(), - 'OStatus' => array(), - 'TwitterBridge' => array(), - 'FacebookBridge' => array(), - 'WebFinger' => array(), - )) + )), + 'disable-Directory' => 1, ), 'discovery' => array('cors' => true) // Allow Cross-Origin Resource Sharing for service discovery (host-meta, XRD, etc.) );