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

T6917, PhabricatorApplicationTransactionNoEffectException when saving "blocking tasks" without changing them

Summary: Fixes T6917, swallow exception when saving blocking tasks with no changes

Test Plan: Open task, "Edit Blocking Tasks", save without changing, dialog should close with no exception

Reviewers: #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: Korvin, epriestley

Maniphest Tasks: T6917

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

authored by

lkassianik and committed by
epriestley
fa47c269 1eb8b6a1

+2 -1
+2 -1
src/applications/search/controller/PhabricatorSearchAttachController.php
··· 74 74 $txn_editor = $object->getApplicationTransactionEditor() 75 75 ->setActor($user) 76 76 ->setContentSourceFromRequest($request) 77 - ->setContinueOnMissingFields(true); 77 + ->setContinueOnMissingFields(true) 78 + ->setContinueOnNoEffect(true); 78 79 79 80 $txn_template = $object->getApplicationTransactionTemplate() 80 81 ->setTransactionType(PhabricatorTransactions::TYPE_EDGE)