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

Fix HTML email section breaks

Summary: Fixes T6481. Provides better section handling.

Test Plan:
Test an email with multiple sections, multiple mail platforms.

{F231022}

Reviewers: btrahan, epriestley

Reviewed By: epriestley

Subscribers: Korvin, epriestley

Maniphest Tasks: T6481

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

+7 -2
+7 -2
src/applications/metamta/view/PhabricatorMetaMTAMailBody.php
··· 79 79 80 80 public function addHTMLSection($header, $html_fragment) { 81 81 $this->htmlSections[] = array( 82 - phutil_tag('div', array('style' => 'font-weight:800;'), $header), 83 - $html_fragment, 82 + phutil_tag( 83 + 'div', 84 + array(), 85 + array( 86 + phutil_tag('strong', array(), $header), 87 + phutil_tag('div', array(), $html_fragment), 88 + )), 84 89 ); 85 90 return $this; 86 91 }