@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.

Remove unused "MARKUP_FIELD_SUMMARY" for Phame posts

Summary: Ref T13661. This ancient "RemarkupInterface" constant has no references.

Test Plan: Grepped for references, found none. Viewed a blog, viewed a post.

Maniphest Tasks: T13661

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

-3
-3
src/applications/phame/storage/PhamePost.php
··· 15 15 PhabricatorFerretInterface { 16 16 17 17 const MARKUP_FIELD_BODY = 'markup:body'; 18 - const MARKUP_FIELD_SUMMARY = 'markup:summary'; 19 18 20 19 protected $bloggerPHID; 21 20 protected $title; ··· 255 254 switch ($field) { 256 255 case self::MARKUP_FIELD_BODY: 257 256 return $this->getBody(); 258 - case self::MARKUP_FIELD_SUMMARY: 259 - return PhabricatorMarkupEngine::summarize($this->getBody()); 260 257 } 261 258 } 262 259