@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix New Phame Blog status setting

Summary: Column status cannot be null fix.

Test Plan: Create a new blog.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Differential Revision: https://secure.phabricator.com/D14574

+1
+1
src/applications/phame/storage/PhameBlog.php
··· 75 75 public static function initializeNewBlog(PhabricatorUser $actor) { 76 76 $blog = id(new PhameBlog()) 77 77 ->setCreatorPHID($actor->getPHID()) 78 + ->setStatus(self::STATUS_ACTIVE) 78 79 ->setViewPolicy(PhabricatorPolicies::getMostOpenPolicy()) 79 80 ->setEditPolicy(PhabricatorPolicies::POLICY_USER); 80 81 return $blog;