diff --git a/src/applications/transactions/storage/PhabricatorEditEngineConfigurationTransaction.php b/src/applications/transactions/storage/PhabricatorEditEngineConfigurationTransaction.php
index 8cf7fe5b48..71048e96c5 100644
--- a/src/applications/transactions/storage/PhabricatorEditEngineConfigurationTransaction.php
+++ b/src/applications/transactions/storage/PhabricatorEditEngineConfigurationTransaction.php
@@ -1,153 +1,167 @@
 <?php
 
 final class PhabricatorEditEngineConfigurationTransaction
   extends PhabricatorApplicationTransaction {
 
   const TYPE_NAME = 'editengine.config.name';
   const TYPE_PREAMBLE = 'editengine.config.preamble';
   const TYPE_ORDER = 'editengine.config.order';
   const TYPE_DEFAULT = 'editengine.config.default';
   const TYPE_LOCKS = 'editengine.config.locks';
   const TYPE_DEFAULTCREATE = 'editengine.config.default.create';
   const TYPE_ISEDIT = 'editengine.config.isedit';
   const TYPE_DISABLE = 'editengine.config.disable';
   const TYPE_CREATEORDER = 'editengine.order.create';
   const TYPE_EDITORDER = 'editengine.order.edit';
   const TYPE_SUBTYPE = 'editengine.config.subtype';
 
   public function getApplicationName() {
     return 'search';
   }
 
   public function getApplicationTransactionType() {
     return PhabricatorEditEngineConfigurationPHIDType::TYPECONST;
   }
 
   public function getTitle() {
     $author_phid = $this->getAuthorPHID();
 
     $old = $this->getOldValue();
     $new = $this->getNewValue();
 
     $type = $this->getTransactionType();
     switch ($type) {
       case PhabricatorTransactions::TYPE_CREATE:
         return pht(
           '%s created this form configuration.',
           $this->renderHandleLink($author_phid));
       case self::TYPE_NAME:
         if (strlen($old)) {
           return pht(
             '%s renamed this form from "%s" to "%s".',
             $this->renderHandleLink($author_phid),
             $old,
             $new);
         } else {
           return pht(
             '%s named this form "%s".',
             $this->renderHandleLink($author_phid),
             $new);
         }
       case self::TYPE_PREAMBLE:
         return pht(
           '%s updated the preamble for this form.',
             $this->renderHandleLink($author_phid));
       case self::TYPE_ORDER:
         return pht(
           '%s reordered the fields in this form.',
           $this->renderHandleLink($author_phid));
       case self::TYPE_DEFAULT:
         $key = $this->getMetadataValue('field.key');
         return pht(
           '%s changed the default value for field "%s".',
           $this->renderHandleLink($author_phid),
           $key);
       case self::TYPE_LOCKS:
         return pht(
           '%s changed locked and hidden fields.',
           $this->renderHandleLink($author_phid));
       case self::TYPE_DEFAULTCREATE:
         if ($new) {
           return pht(
             '%s added this form to the "Create" menu.',
             $this->renderHandleLink($author_phid));
         } else {
           return pht(
             '%s removed this form from the "Create" menu.',
             $this->renderHandleLink($author_phid));
         }
       case self::TYPE_ISEDIT:
         if ($new) {
           return pht(
             '%s marked this form as an edit form.',
             $this->renderHandleLink($author_phid));
         } else {
           return pht(
             '%s unmarked this form as an edit form.',
             $this->renderHandleLink($author_phid));
         }
       case self::TYPE_DISABLE:
         if ($new) {
           return pht(
             '%s disabled this form.',
             $this->renderHandleLink($author_phid));
         } else {
           return pht(
             '%s enabled this form.',
             $this->renderHandleLink($author_phid));
         }
       case self::TYPE_SUBTYPE:
         return pht(
           '%s changed the subtype of this form from "%s" to "%s".',
           $this->renderHandleLink($author_phid),
           $old,
           $new);
     }
 
     return parent::getTitle();
   }
 
   public function getColor() {
     $author_phid = $this->getAuthorPHID();
 
     $old = $this->getOldValue();
     $new = $this->getNewValue();
 
     $type = $this->getTransactionType();
     switch ($type) {
       case PhabricatorTransactions::TYPE_CREATE:
         return 'green';
       case self::TYPE_DISABLE:
         if ($new) {
           return 'indigo';
         } else {
           return 'green';
         }
     }
 
     return parent::getColor();
   }
 
   public function getIcon() {
     $author_phid = $this->getAuthorPHID();
 
     $old = $this->getOldValue();
     $new = $this->getNewValue();
 
     $type = $this->getTransactionType();
     switch ($type) {
       case PhabricatorTransactions::TYPE_CREATE:
         return 'fa-plus';
       case self::TYPE_DISABLE:
         if ($new) {
           return 'fa-ban';
         } else {
           return 'fa-check';
         }
     }
 
     return parent::getIcon();
   }
 
+  protected function newRemarkupChanges() {
+    $changes = array();
+
+    $type = $this->getTransactionType();
+    switch ($type) {
+      case self::TYPE_PREAMBLE:
+        $changes[] = $this->newRemarkupChange()
+          ->setOldValue($this->getOldValue())
+          ->setNewValue($this->getNewValue());
+        break;
+    }
+
+    return $changes;
+  }
 
 }