1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-10 00:42:41 +01:00

Send correct result in Phortune Charge List

Summary: Fixes T9074, we're sending $table and should send $result

Test Plan: Vast Wealth fake CC charge!

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Maniphest Tasks: T9074

Differential Revision: https://secure.phabricator.com/D13802
This commit is contained in:
Chad Little 2015-08-05 13:40:44 -07:00
parent 2383e741aa
commit 425c12dc97

View file

@ -130,6 +130,6 @@ final class PhortuneChargeSearchEngine
$result = new PhabricatorApplicationSearchResultView();
$result->setTable($table);
return $table;
return $result;
}
}