From 22d7b543787fdb0b4931f00b3fd193372bf129d4 Mon Sep 17 00:00:00 2001
From: epriestley <git@epriestley.com>
Date: Tue, 30 Jul 2013 15:50:27 -0700
Subject: [PATCH] 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
---
 .../controller/PonderQuestionViewController.php     | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/src/applications/ponder/controller/PonderQuestionViewController.php b/src/applications/ponder/controller/PonderQuestionViewController.php
index 216eeb145d..5e8f450c25 100644
--- a/src/applications/ponder/controller/PonderQuestionViewController.php
+++ b/src/applications/ponder/controller/PonderQuestionViewController.php
@@ -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)),
       ));