mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-22 04:31:13 +01:00
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
This commit is contained in:
parent
1eb8b6a1b8
commit
fa47c26907
1 changed files with 2 additions and 1 deletions
|
@ -74,7 +74,8 @@ final class PhabricatorSearchAttachController
|
|||
$txn_editor = $object->getApplicationTransactionEditor()
|
||||
->setActor($user)
|
||||
->setContentSourceFromRequest($request)
|
||||
->setContinueOnMissingFields(true);
|
||||
->setContinueOnMissingFields(true)
|
||||
->setContinueOnNoEffect(true);
|
||||
|
||||
$txn_template = $object->getApplicationTransactionTemplate()
|
||||
->setTransactionType(PhabricatorTransactions::TYPE_EDGE)
|
||||
|
|
Loading…
Reference in a new issue