@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 access to undeclared variable when trying to create invalid Auth provider

Summary: Ref T6971. This fixes the error the user reported. Not sure what's up with the root cause of their issue.

Test Plan: Went to `/auth/config/new/asdfqwer/` and got a 404 instead of an exception.

Reviewers: btrahan, chad

Reviewed By: chad

Subscribers: epriestley

Maniphest Tasks: T6971

Differential Revision: https://secure.phabricator.com/D11388

+2
+2
src/applications/auth/controller/config/PhabricatorAuthEditController.php
··· 31 31 32 32 $is_new = false; 33 33 } else { 34 + $provider = null; 35 + 34 36 $providers = PhabricatorAuthProvider::getAllBaseProviders(); 35 37 foreach ($providers as $candidate_provider) { 36 38 if (get_class($candidate_provider) === $provider_class) {