From bdfbad092b05ec02788702fa0af3facc1c71ba24 Mon Sep 17 00:00:00 2001 From: epriestley Date: Wed, 14 Jan 2015 11:04:22 -0800 Subject: [PATCH] Fix an issue with Auth edit 404ing Summary: Fixes T6971. This parameter got updated slightly wrong. Test Plan: Edited an auth provider. Reviewers: chad, btrahan Reviewed By: btrahan Subscribers: epriestley Maniphest Tasks: T6971 Differential Revision: https://secure.phabricator.com/D11392 --- .../auth/controller/config/PhabricatorAuthEditController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/auth/controller/config/PhabricatorAuthEditController.php b/src/applications/auth/controller/config/PhabricatorAuthEditController.php index 875680225a..15927bb518 100644 --- a/src/applications/auth/controller/config/PhabricatorAuthEditController.php +++ b/src/applications/auth/controller/config/PhabricatorAuthEditController.php @@ -8,7 +8,7 @@ final class PhabricatorAuthEditController AuthManageProvidersCapability::CAPABILITY); $viewer = $request->getUser(); $provider_class = $request->getURIData('className'); - $config_id = $request->getURIData('configID'); + $config_id = $request->getURIData('id'); if ($config_id) { $config = id(new PhabricatorAuthProviderConfigQuery())