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

Minor, fix a variable issue with new context commenting.

+4 -3
+4 -3
src/applications/differential/mail/DifferentialCommentMail.php
··· 173 173 $range = $start; 174 174 } 175 175 176 + $inline_content = $inline->getContent(); 177 + 176 178 if (!PhabricatorEnv::getEnvConfig( 177 179 'metamta.differential.unified-comment-context', false)) { 178 - $body[] = $this->formatText("{$file}:{$range} {$content}"); 180 + $body[] = $this->formatText("{$file}:{$range} {$inline_content}"); 179 181 } else { 180 182 $body[] = "================"; 181 183 $body[] = "Comment at: " . $file . ":" . $range; 182 184 $body[] = $changeset->makeContextDiff($inline, 1); 183 185 $body[] = "----------------"; 184 186 185 - $content = $inline->getContent(); 186 - $body[] = $content; 187 + $body[] = $inline_content; 187 188 $body[] = null; 188 189 } 189 190 }