Changeset 880910
- Timestamp:
- 03/24/2014 02:48:20 PM (12 years ago)
- Location:
- wp-restful-single-sign-on
- Files:
-
- 11 added
- 2 edited
-
tags/1.1.0 (added)
-
tags/1.1.0/LICENSE (added)
-
tags/1.1.0/README.md (added)
-
tags/1.1.0/RestfulSingleSignOn (added)
-
tags/1.1.0/RestfulSingleSignOn/Api (added)
-
tags/1.1.0/RestfulSingleSignOn/Api/AuthInterface.php (added)
-
tags/1.1.0/RestfulSingleSignOn/Api/Rest.php (added)
-
tags/1.1.0/RestfulSingleSignOn/DummyMailer.php (added)
-
tags/1.1.0/RestfulSingleSignOn/HttpResponse.php (added)
-
tags/1.1.0/RestfulSingleSignOnPlugin.php (added)
-
tags/1.1.0/readme.txt (added)
-
trunk/RestfulSingleSignOnPlugin.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-restful-single-sign-on/trunk/RestfulSingleSignOnPlugin.php
r872768 r880910 6 6 Author: Austin Matzko 7 7 Author URI: https://austinmatzko.com 8 Version: 1. 08 Version: 1.1 9 9 Text Domain: restful-single-sign-on 10 10 */ … … 446 446 if (!$data instanceof WP_Error) { 447 447 $user = $db_user; 448 $data = apply_filters('restful_single_sign_on_response_data', $user->ID, $data); 448 449 if (0 < count($cookies_to_set)) { 449 450 $this->_set_cookies_from_response($cookies_to_set, $cookie_domain, $resp); … … 461 462 $arbitrary_password = sha1(uniqid(microtime())); 462 463 $user_id = wp_create_user($username, $arbitrary_password, $data[$email_property]); 464 $data = apply_filters('restful_single_sign_on_response_data', $user_id, $data); 463 465 update_user_meta($user_id, 'first_name', $data[$first_name_property]); 464 466 update_user_meta($user_id, 'last_name', $data[$last_name_property]); -
wp-restful-single-sign-on/trunk/readme.txt
r872768 r880910 5 5 Requires at least: 3.8 6 6 Tested up to: 3.8 7 Stable tag: 1. 0.27 Stable tag: 1.1.0 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.