mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-19 12:00:55 +01:00
Fix an issue with the Phortune card disable route
I think this got clipped in modernization at some point. Auditors: chad
This commit is contained in:
parent
23367265e1
commit
7ba13edc2e
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@ final class PhortunePaymentMethodDisableController
|
||||||
|
|
||||||
public function handleRequest(AphrontRequest $request) {
|
public function handleRequest(AphrontRequest $request) {
|
||||||
$viewer = $request->getViewer();
|
$viewer = $request->getViewer();
|
||||||
$method_id = $request->getURIData('methodID');
|
$method_id = $request->getURIData('id');
|
||||||
|
|
||||||
$method = id(new PhortunePaymentMethodQuery())
|
$method = id(new PhortunePaymentMethodQuery())
|
||||||
->setViewer($viewer)
|
->setViewer($viewer)
|
||||||
|
|
Loading…
Reference in a new issue