From: Michael Date: Wed, 27 Mar 2019 21:46:32 +0000 (+0000) Subject: Store the follow activity in the "item-activity" table X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=2df2f623e17d729a3adac61eb823d9eb110496cc;p=friendica.git Store the follow activity in the "item-activity" table --- diff --git a/src/Model/Item.php b/src/Model/Item.php index 4808b2d035..68bbdfd8f2 100644 --- a/src/Model/Item.php +++ b/src/Model/Item.php @@ -92,7 +92,7 @@ class Item extends BaseObject // Never reorder or remove entries from this list. Just add new ones at the end, if needed. // The item-activity table only stores the index and needs this array to know the matching activity. - const ACTIVITIES = [ACTIVITY_LIKE, ACTIVITY_DISLIKE, ACTIVITY_ATTEND, ACTIVITY_ATTENDNO, ACTIVITY_ATTENDMAYBE]; + const ACTIVITIES = [ACTIVITY_LIKE, ACTIVITY_DISLIKE, ACTIVITY_ATTEND, ACTIVITY_ATTENDNO, ACTIVITY_ATTENDMAYBE, ACTIVITY_FOLLOW]; private static $legacy_mode = null;