]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Change defaults for ActivityPlugin to only log joins and follows
authorEvan Prodromou <evan@status.net>
Wed, 21 Sep 2011 14:15:34 +0000 (10:15 -0400)
committerEvan Prodromou <evan@status.net>
Wed, 21 Sep 2011 14:15:34 +0000 (10:15 -0400)
plugins/Activity/ActivityPlugin.php

index 0c7700d78756dd96a56ad156ff625032ead4e497..c9f0bfa25b3e28cb1661d0e83bd89b17141da2c6 100644 (file)
@@ -51,11 +51,11 @@ class ActivityPlugin extends Plugin
 
     // Flags to switch off certain activity notices
     public $StartFollowUser = true;
-    public $StopFollowUser  = true;
+    public $StopFollowUser  = false;
     public $JoinGroup = true;
-    public $LeaveGroup = true;
-    public $StartLike = true;
-    public $StopLike = true;
+    public $LeaveGroup = false;
+    public $StartLike = false;
+    public $StopLike = false;
 
     function onAutoload($cls)
     {