mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-22 23:02:42 +01:00
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
This commit is contained in:
parent
14a76526f3
commit
bdfbad092b
1 changed files with 1 additions and 1 deletions
|
@ -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())
|
||||
|
|
Loading…
Reference in a new issue