@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 an issue where Ponder rename stories tried to render question bodies

Summary: Missing some `break;`, pretty sure this is causing the issue on `secure.phabricator.com`.

Test Plan: Will push.

Reviewers: chad, btrahan

Reviewed By: btrahan

CC: aran

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

+3
+3
src/applications/ponder/storage/PonderQuestionTransaction.php
··· 258 258 return phutil_escape_html_newlines( 259 259 phutil_utf8_shorten($question->getContent(), 128)); 260 260 } 261 + break; 261 262 case self::TYPE_ANSWERS: 262 263 $answer = $this->getNewAnswerObject($story); 263 264 if ($answer) { 264 265 return phutil_escape_html_newlines( 265 266 phutil_utf8_shorten($answer->getContent(), 128)); 266 267 } 268 + break; 267 269 } 270 + 268 271 return parent::getBodyForFeed($story); 269 272 } 270 273