@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 PonderAnswer transaction callsite

Summary: Caught this in the logs, calling an old transaction, update it.

Test Plan: Answer a question, tail log, see no error.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

authored by

Chad Little and committed by
chad
b3692cc1 7aeb4985

+1 -1
+1 -1
src/applications/ponder/editor/PonderAnswerEditor.php
··· 71 71 foreach ($xactions as $xaction) { 72 72 $type = $xaction->getTransactionType(); 73 73 $new = $xaction->getNewValue(); 74 - if ($type == PonderAnswerTransaction::TYPE_CONTENT) { 74 + if ($type == PonderAnswerContentTransaction::TRANSACTIONTYPE) { 75 75 $body->addRawSection($new); 76 76 } 77 77 }