From 7ba13edc2ef96d9e2bc4f969c011dd4ee7c2d6e1 Mon Sep 17 00:00:00 2001 From: epriestley Date: Fri, 8 Jan 2016 09:08:43 -0800 Subject: [PATCH] Fix an issue with the Phortune card disable route I think this got clipped in modernization at some point. Auditors: chad --- .../controller/PhortunePaymentMethodDisableController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/phortune/controller/PhortunePaymentMethodDisableController.php b/src/applications/phortune/controller/PhortunePaymentMethodDisableController.php index 4b8fb76010..659ae2f53e 100644 --- a/src/applications/phortune/controller/PhortunePaymentMethodDisableController.php +++ b/src/applications/phortune/controller/PhortunePaymentMethodDisableController.php @@ -5,7 +5,7 @@ final class PhortunePaymentMethodDisableController public function handleRequest(AphrontRequest $request) { $viewer = $request->getViewer(); - $method_id = $request->getURIData('methodID'); + $method_id = $request->getURIData('id'); $method = id(new PhortunePaymentMethodQuery()) ->setViewer($viewer)