From e2ef244e4c60eeb01d1a8ef68e666ef76935f15a Mon Sep 17 00:00:00 2001 From: Cameron Date: Mon, 18 Sep 2017 17:02:48 -0700 Subject: [PATCH] Social login: Yahoo - added id/secret fields. --- e107_plugins/social/admin_config.php | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/e107_plugins/social/admin_config.php b/e107_plugins/social/admin_config.php index 16da615a1..b26b2123d 100644 --- a/e107_plugins/social/admin_config.php +++ b/e107_plugins/social/admin_config.php @@ -141,13 +141,7 @@ class social_ui extends e_admin_ui $this->social_logins = array ( // openid providers - "OpenID" => array ( - "enabled" => true - ), - "Yahoo" => array ( - "enabled" => true - ), "AOL" => array ( "enabled" => true @@ -203,6 +197,11 @@ class social_ui extends e_admin_ui "keys" => array ( "key" => "", "secret" => "" ) ), */ + + "OpenID" => array ( + "enabled" => true + ), + "Steam" => array ( "enabled" => true, "keys" => array ( "key" => "" ) @@ -210,9 +209,15 @@ class social_ui extends e_admin_ui "Twitter" => array ( "enabled" => true, - "keys" => array ( "key" => "", "secret" => "" ) + "keys" => array ( "key" => "", "secret" => "" ), + "includeEmail" => true, ), + + "Yahoo" => array ( + "enabled" => true, + "keys" => array ( "id" => "", "secret" => "" ), + ), );