@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

+1 -1
+1 -1
src/applications/auth/controller/config/PhabricatorAuthEditController.php
··· 8 8 AuthManageProvidersCapability::CAPABILITY); 9 9 $viewer = $request->getUser(); 10 10 $provider_class = $request->getURIData('className'); 11 - $config_id = $request->getURIData('configID'); 11 + $config_id = $request->getURIData('id'); 12 12 13 13 if ($config_id) { 14 14 $config = id(new PhabricatorAuthProviderConfigQuery())