@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 description variable on Blog manage page

Summary: Properly set description variable.

Test Plan: Visit blog manage page.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+2 -1
+2 -1
src/applications/phame/controller/blog/PhameBlogManageController.php
··· 117 117 118 118 $properties->invokeWillRenderEvent(); 119 119 120 - if (strlen($blog->getDescription())) { 120 + $description = $blog->getDescription(); 121 + if (strlen($description)) { 121 122 $description = new PHUIRemarkupView($viewer, $description); 122 123 $properties->addSectionHeader( 123 124 pht('Description'),