Changeset 2387456
- Timestamp:
- 09/24/2020 06:29:26 AM (6 years ago)
- Location:
- wordpress-social-login/trunk
- Files:
-
- 5 edited
-
includes/admin/wsl.admin.ui.php (modified) (1 diff)
-
includes/services/wsl.authentication.php (modified) (1 diff)
-
readme.md (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
wp-social-login.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wordpress-social-login/trunk/includes/admin/wsl.admin.ui.php
r2386920 r2387456 424 424 425 425 <ul style="margin-left:25px;"> 426 <li><?php _wsl_e('WSL is now fully migrated to Hybridauth 3. 4', 'wordpress-social-login') ?></li>426 <li><?php _wsl_e('WSL is now fully migrated to Hybridauth 3.5', 'wordpress-social-login') ?></li> 427 427 <li><?php _wsl_e("Reworked providers Callback URLs and it's a breaking change! See up top notice", 'wordpress-social-login') ?></li> 428 428 <li><?php _wsl_e('Added serval new providers: Amazon, Discord and Spotify to name a few', 'wordpress-social-login') ?></li> -
wordpress-social-login/trunk/includes/services/wsl.authentication.php
r2386920 r2387456 949 949 } 950 950 951 $provider_scope = isset( $config["providers"][$provider]["scope"] ) ? $config["providers"][$provider]["scope"] : '';951 $provider_scope = isset( $config["providers"][$provider]["scope"] ) ? $config["providers"][$provider]["scope"] : null ; 952 952 953 953 // HOOKABLE: allow to overwrite scopes 954 $config["providers"][$provider]["scope"] = apply_filters( 'wsl_hook_alter_provider_scope', $provider_scope, $provider ); 954 $provider_scope = apply_filters( 'wsl_hook_alter_provider_scope', $provider_scope, $provider ); 955 956 // XXX: Scope needs to be diffrent than null. 957 if($provider_scope !== null){ 958 $config["providers"][$provider]["scope"] = $provider_scope; 959 } 955 960 956 961 // HOOKABLE: allow to overwrite hybridauth config for the selected provider -
wordpress-social-login/trunk/readme.md
r2386920 r2387456 1 ## [WordPress Social Login](https://wordpress.org/plugins/wordpress-social-login/) 3.0. 3-dev1 ## [WordPress Social Login](https://wordpress.org/plugins/wordpress-social-login/) 3.0.4-dev 2 2 3 3 **WordPress Social Login** is a free and open source plugin made by the community, for the community. -
wordpress-social-login/trunk/readme.txt
r2386931 r2387456 4 4 Requires at least: 3.0 5 5 Tested up to: 5.5 6 Stable tag: 3.0. 36 Stable tag: 3.0.4 7 7 License: MIT License 8 8 License URI: http://opensource.org/licenses/MIT … … 30 30 <strong>Free, unlimited and white-label</strong> <br> 31 31 Wordpress Social Login is open-source and completely free. The source code is publicly available on [GitHub](https://github.com/hybridauth/WordPress-Social-Login) for anyone to help and contribute. You are free to use a Wordpress Social Login in commercial projects as long as the copyright header is left intact. 32 33 <strong>Special thanks to:</strong>34 35 * [Thenbrent](http://profiles.wordpress.org/users/thenbrent/) the talented developer behind the Social Connect plugin.36 * [Pat Anvil](http://patanvil.com) for adding Goodreads.37 * [Ayrat Belyaev](https://github.com/xbreaker) for adding Mail.ru, Yandex and Odnoklassniki.38 * [Social Login plugin](https://wordpress.org/plugins/oa-social-login/) for many borrowed functions.39 * [Query Monitor plugin](https://wordpress.org/plugins/query-monitor/) - A must have for Wordpress plugins developers.40 32 41 33 Big thanks to everyone who have contributed to WordPress Social Login by submitting Patches, Ideas, Reviews and by Helping in the support forum. … … 75 67 76 68 == Changelog == 69 70 = 3.0.4 = 71 72 * Hotfix an issue with default scopes of a certain identity providers. 77 73 78 74 = 3.0.3 = -
wordpress-social-login/trunk/wp-social-login.php
r2386920 r2387456 4 4 Plugin URI: http://miled.github.io/wordpress-social-login/ 5 5 Description: Allow your visitors to comment and login with social networks such as Twitter, Facebook, Google, Yahoo and more. 6 Version: 3.0. 36 Version: 3.0.4 7 7 Author: Miled 8 8 Author URI: https://github.com/miled
Note: See TracChangeset
for help on using the changeset viewer.