Change defaults for ActivityPlugin to only log joins and follows

这个提交包含在:
Evan Prodromou 2011-09-21 10:15:34 -04:00
父节点 5df47bc659
当前提交 838c3988ee

查看文件

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