diff --git a/src/applications/maniphest/storage/ManiphestTask.php b/src/applications/maniphest/storage/ManiphestTask.php index 4f90de3507..46dd8a1547 100644 --- a/src/applications/maniphest/storage/ManiphestTask.php +++ b/src/applications/maniphest/storage/ManiphestTask.php @@ -24,8 +24,6 @@ final class ManiphestTask extends ManiphestDAO PhabricatorPolicyCodexInterface, PhabricatorUnlockableInterface { - const MARKUP_FIELD_DESCRIPTION = 'markup:desc'; - protected $authorPHID; protected $ownerPHID; diff --git a/src/applications/phame/controller/blog/PhameBlogManageController.php b/src/applications/phame/controller/blog/PhameBlogManageController.php index 65378d91cb..a30d036c3f 100644 --- a/src/applications/phame/controller/blog/PhameBlogManageController.php +++ b/src/applications/phame/controller/blog/PhameBlogManageController.php @@ -143,11 +143,6 @@ final class PhameBlogManageController extends PhameBlogController { ), $feed_uri)); - $engine = id(new PhabricatorMarkupEngine()) - ->setViewer($viewer) - ->addObject($blog, PhameBlog::MARKUP_FIELD_DESCRIPTION) - ->process(); - $description = $blog->getDescription(); if (strlen($description)) { $description = new PHUIRemarkupView($viewer, $description); diff --git a/src/applications/phame/storage/PhameBlog.php b/src/applications/phame/storage/PhameBlog.php index 232f1fe4db..a68ddac0b0 100644 --- a/src/applications/phame/storage/PhameBlog.php +++ b/src/applications/phame/storage/PhameBlog.php @@ -13,8 +13,6 @@ final class PhameBlog extends PhameDAO PhabricatorFulltextInterface, PhabricatorFerretInterface { - const MARKUP_FIELD_DESCRIPTION = 'markup:description'; - protected $name; protected $subtitle; protected $description;