Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15387862
D13554.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
3 KB
Referenced Files
None
Subscribers
None
D13554.diff
View Options
diff --git a/src/applications/calendar/editor/PhabricatorCalendarEventEditor.php b/src/applications/calendar/editor/PhabricatorCalendarEventEditor.php
--- a/src/applications/calendar/editor/PhabricatorCalendarEventEditor.php
+++ b/src/applications/calendar/editor/PhabricatorCalendarEventEditor.php
@@ -436,9 +436,9 @@
$body = parent::buildMailBody($object, $xactions);
if (strlen($description)) {
- $body->addTextSection(
+ $body->addRemarkupSection(
pht('EVENT DESCRIPTION'),
- $object->getDescription());
+ $description);
}
$body->addLinkSection(
diff --git a/src/applications/metamta/view/PhabricatorMetaMTAMailBody.php b/src/applications/metamta/view/PhabricatorMetaMTAMailBody.php
--- a/src/applications/metamta/view/PhabricatorMetaMTAMailBody.php
+++ b/src/applications/metamta/view/PhabricatorMetaMTAMailBody.php
@@ -43,16 +43,16 @@
return $this;
}
- public function addRemarkupSection($text) {
+ public function addRemarkupSection($header, $text) {
try {
$engine = PhabricatorMarkupEngine::newMarkupEngine(array());
$engine->setConfig('viewer', $this->getViewer());
$engine->setMode(PhutilRemarkupEngine::MODE_TEXT);
$styled_text = $engine->markupText($text);
- $this->sections[] = $styled_text;
+ $this->addPlaintextSection($header, $styled_text);
} catch (Exception $ex) {
phlog($ex);
- $this->sections[] = $text;
+ $this->addTextSection($header, $text);
}
try {
@@ -63,14 +63,10 @@
'uri.base',
PhabricatorEnv::getProductionURI('/'));
$html = $mail_engine->markupText($text);
- $this->htmlSections[] = $html;
+ $this->addHTMLSection($header, $html);
} catch (Exception $ex) {
phlog($ex);
- $this->htmlSections[] = phutil_escape_html_newlines(
- phutil_tag(
- 'div',
- array(),
- $text));
+ $this->addHTMLSection($header, $text);
}
return $this;
@@ -121,12 +117,16 @@
}
public function addHTMLSection($header, $html_fragment) {
+ if ($header !== null) {
+ $header = phutil_tag('strong', array(), $header);
+ }
+
$this->htmlSections[] = array(
phutil_tag(
'div',
array(),
array(
- phutil_tag('strong', array(), $header),
+ $header,
phutil_tag('div', array(), $html_fragment),
)),
);
@@ -212,5 +212,4 @@
private function indent($text) {
return rtrim(" ".str_replace("\n", "\n ", $text));
}
-
}
diff --git a/src/applications/phortune/editor/PhortuneCartEditor.php b/src/applications/phortune/editor/PhortuneCartEditor.php
--- a/src/applications/phortune/editor/PhortuneCartEditor.php
+++ b/src/applications/phortune/editor/PhortuneCartEditor.php
@@ -145,7 +145,7 @@
"%s",
$issues);
- $body->addRemarkupSection($overview);
+ $body->addRemarkupSection(null, $overview);
$body->addLinkSection(
pht('PAY NOW'),
diff --git a/src/applications/transactions/editor/PhabricatorApplicationTransactionEditor.php b/src/applications/transactions/editor/PhabricatorApplicationTransactionEditor.php
--- a/src/applications/transactions/editor/PhabricatorApplicationTransactionEditor.php
+++ b/src/applications/transactions/editor/PhabricatorApplicationTransactionEditor.php
@@ -2668,7 +2668,7 @@
$body->addRawSection(implode("\n", $headers));
foreach ($comments as $comment) {
- $body->addRemarkupSection($comment);
+ $body->addRemarkupSection(null, $comment);
}
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Mar 16, 3:02 AM (2 w, 5 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7705374
Default Alt Text
D13554.diff (3 KB)
Attached To
Mode
D13554: HTML emails for Calendar event description changes should respect remarkup rules
Attached
Detach File
Event Timeline
Log In to Comment