mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
Explicitly enforce transaction load order in Maniphest.
This commit is contained in:
parent
22767b80af
commit
63748f6e05
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ class ManiphestTaskDetailController extends ManiphestController {
|
||||||
}
|
}
|
||||||
|
|
||||||
$transactions = id(new ManiphestTransaction())->loadAllWhere(
|
$transactions = id(new ManiphestTransaction())->loadAllWhere(
|
||||||
'taskID = %d',
|
'taskID = %d ORDER BY id ASC',
|
||||||
$task->getID());
|
$task->getID());
|
||||||
|
|
||||||
$phids = array();
|
$phids = array();
|
||||||
|
|
Loading…
Reference in a new issue