1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-01-11 15:21:03 +01:00

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
This commit is contained in:
epriestley 2013-07-30 15:50:27 -07:00
parent 2ee1f8cb4e
commit 22d7b54378

View file

@ -159,10 +159,15 @@ final class PonderQuestionViewController extends PonderController {
$view->addTextContent(
array(
$votable,
PhabricatorMarkupEngine::renderOneObject(
$question,
$question->getMarkupField(),
$viewer),
phutil_tag(
'div',
array(
'class' => 'phabricator-remarkup',
),
PhabricatorMarkupEngine::renderOneObject(
$question,
$question->getMarkupField(),
$viewer)),
));