@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 ancient Remarkup constants from Phame and Maniphest

Summary: Ref T13661. These constants are no longer used.

Test Plan:
For a blog with a nonempty description, viewed the "Manage" page and the home page; saw properly rendered description.

Grepped for removed constants, no hits.

Maniphest Tasks: T13661

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

-9
-2
src/applications/maniphest/storage/ManiphestTask.php
··· 24 24 PhabricatorPolicyCodexInterface, 25 25 PhabricatorUnlockableInterface { 26 26 27 - const MARKUP_FIELD_DESCRIPTION = 'markup:desc'; 28 - 29 27 protected $authorPHID; 30 28 protected $ownerPHID; 31 29
-5
src/applications/phame/controller/blog/PhameBlogManageController.php
··· 143 143 ), 144 144 $feed_uri)); 145 145 146 - $engine = id(new PhabricatorMarkupEngine()) 147 - ->setViewer($viewer) 148 - ->addObject($blog, PhameBlog::MARKUP_FIELD_DESCRIPTION) 149 - ->process(); 150 - 151 146 $description = $blog->getDescription(); 152 147 if (strlen($description)) { 153 148 $description = new PHUIRemarkupView($viewer, $description);
-2
src/applications/phame/storage/PhameBlog.php
··· 13 13 PhabricatorFulltextInterface, 14 14 PhabricatorFerretInterface { 15 15 16 - const MARKUP_FIELD_DESCRIPTION = 'markup:description'; 17 - 18 16 protected $name; 19 17 protected $subtitle; 20 18 protected $description;