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

Add missing "phabricator-remarkup" div

Summary: Fixes T3652.

Test Plan: Created a Ponder question with fancy remarkup in the descriptive text.

Reviewers: btrahan, Firehed

Reviewed By: btrahan

CC: aran

Maniphest Tasks: T3652

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

+9 -4
+9 -4
src/applications/ponder/controller/PonderQuestionViewController.php
··· 159 159 $view->addTextContent( 160 160 array( 161 161 $votable, 162 - PhabricatorMarkupEngine::renderOneObject( 163 - $question, 164 - $question->getMarkupField(), 165 - $viewer), 162 + phutil_tag( 163 + 'div', 164 + array( 165 + 'class' => 'phabricator-remarkup', 166 + ), 167 + PhabricatorMarkupEngine::renderOneObject( 168 + $question, 169 + $question->getMarkupField(), 170 + $viewer)), 166 171 )); 167 172 168 173