From 71e4870a8e060f3be28b475761cf03ef57bb5a1b Mon Sep 17 00:00:00 2001 From: epriestley Date: Mon, 24 Jun 2013 12:02:53 -0700 Subject: [PATCH] Fix OAuth Facebook Phame property access Summary: Ref T1536. This is missing a call. Test Plan: Viewed a public blog with Facebook comments. Reviewers: btrahan, chad Reviewed By: chad CC: aran Maniphest Tasks: T1536 Differential Revision: https://secure.phabricator.com/D6288 --- .../auth/provider/PhabricatorAuthProviderOAuthFacebook.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/auth/provider/PhabricatorAuthProviderOAuthFacebook.php b/src/applications/auth/provider/PhabricatorAuthProviderOAuthFacebook.php index 6c3b91f286..0fe5169683 100644 --- a/src/applications/auth/provider/PhabricatorAuthProviderOAuthFacebook.php +++ b/src/applications/auth/provider/PhabricatorAuthProviderOAuthFacebook.php @@ -121,7 +121,7 @@ final class PhabricatorAuthProviderOAuthFacebook return null; } - return $fb_provider->getProperty( + return $fb_provider->getProviderConfig()->getProperty( PhabricatorAuthProviderOAuth::PROPERTY_APP_ID); }