From 5a3d2ef2a1dc2cf2b28cb8c833a89c2eccefcbed Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Tue, 2 Feb 2016 16:28:37 +0100 Subject: [PATCH] Don't enable tag activities by default --- apps/systemtags/activity/extension.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/systemtags/activity/extension.php b/apps/systemtags/activity/extension.php index aa61b0bb94..4a97461150 100644 --- a/apps/systemtags/activity/extension.php +++ b/apps/systemtags/activity/extension.php @@ -83,7 +83,7 @@ class Extension implements IExtension { * @return array|false */ public function getDefaultTypes($method) { - return [self::APP_NAME]; + return $method === self::METHOD_STREAM ? [self::APP_NAME] : false; } /**