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

In Drydock log views, respect newlines

Summary: Depends on D19070. Ref T13073. Some messages contain an interesting story or a clever anecdote. Respect newlines during rendering to preserve authorial intent.

Test Plan:
Viewed a message with linebreaks and could still read it.

{F5427754}

Subscribers: PHID-OPKG-gm6ozazyms6q6i22gyam

Maniphest Tasks: T13073

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

+1
+1
src/applications/drydock/view/DrydockLogListView.php
··· 53 53 $type = $type_object->getLogTypeName(); 54 54 $icon = $type_object->getLogTypeIcon($log_data); 55 55 $data = $type_object->renderLog($log_data); 56 + $data = phutil_escape_html_newlines($data); 56 57 } else { 57 58 $type = pht('<Unknown: %s>', $type_key); 58 59 $data = null;