Change defaults for ActivityPlugin to only log joins and follows

This commit is contained in:
Evan Prodromou 2011-09-21 10:15:34 -04:00
parent 5df47bc659
commit 838c3988ee

View 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)
{