From 01afa791ab007878f39837622433130aa14611fc Mon Sep 17 00:00:00 2001 From: Chad Little Date: Fri, 23 Sep 2016 08:49:42 -0400 Subject: [PATCH] Don't lock subscription in PhameBlog Summary: Ref T11687. Subscription to Blogs comes with many additional features, don't lock people in. Test Plan: Saw I was no longer subscribed. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Maniphest Tasks: T11687 Differential Revision: https://secure.phabricator.com/D16589 --- src/applications/phame/storage/PhameBlog.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/phame/storage/PhameBlog.php b/src/applications/phame/storage/PhameBlog.php index dc91672465..32cb6db543 100644 --- a/src/applications/phame/storage/PhameBlog.php +++ b/src/applications/phame/storage/PhameBlog.php @@ -361,7 +361,7 @@ final class PhameBlog extends PhameDAO public function isAutomaticallySubscribed($phid) { - return ($this->creatorPHID == $phid); + return false; }