Changeset 2846538
- Timestamp:
- 01/11/2023 07:23:03 AM (3 years ago)
- Location:
- wp-cassify/trunk
- Files:
-
- 3 edited
-
classes/wp_cassify_plugin.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
-
wp-cassify.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-cassify/trunk/classes/wp_cassify_plugin.php
r2749845 r2846538 481 481 if ( $wp_cassify_create_user_if_not_exist == 'create_user_if_not_exist' ) { 482 482 if ( WP_Cassify_Utils::wp_cassify_is_wordpress_user_exist( $cas_user_datas[ 'cas_user_id' ] ) == false ) { 483 error_log('WP CASSIFY CREATE USER....'); 484 483 485 $wordpress_user_id = WP_Cassify_Utils::wp_cassify_create_wordpress_user( $cas_user_datas[ 'cas_user_id' ], null ); 484 486 … … 529 531 // Auth user into wordpress 530 532 WP_Cassify_Utils::wp_cassify_auth_user_wordpress( $cas_user_datas[ 'cas_user_id' ] ); 533 534 // Custom hook to perform action after wordpress authentication. 535 do_action( 'wp_cassify_after_auth_user_wordpress', $cas_user_datas ); 531 536 532 537 $notification_rule_matched = $this->wp_cassify_notification_rule_matched( … … 1400 1405 $cas_user_data_formatted = null; 1401 1406 1407 if (! array_key_exists( $wp_cassify_cas_user_attribute, $cas_user_datas ) ) 1408 continue; 1409 1402 1410 if ( is_array( $cas_user_datas[ $wp_cassify_cas_user_attribute ] ) ) { 1403 1411 $cas_user_data_formatted = maybe_serialize( $cas_user_datas[ $wp_cassify_cas_user_attribute ] ); -
wp-cassify/trunk/readme.txt
r2749845 r2846538 5 5 Donate link: https://wpcassify.wordpress.com/donate/ 6 6 Requires at least: 4.4 7 Tested up to: 6. 07 Tested up to: 6.1.1 8 8 Requires PHP: 7.0 9 Stable tag: 2.3. 09 Stable tag: 2.3.1 10 10 License: GPLv2 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 144 144 145 145 = 2.3.0 = 146 * New custom hook wp_cassify_after_auth_user_wordpress 147 148 = 2.3.0 = 146 149 * Some bugfix 147 150 -
wp-cassify/trunk/wp-cassify.php
r2749845 r2846538 5 5 * Plugin URI: https://wpcassify.wordpress.com/ 6 6 * Description: CAS Authentication Client for Wordpress. Also, it handle custom authorizations rules from cas user attributes. 7 * Version: 2.3. 07 * Version: 2.3.1 8 8 * Requires PHP: 7.0 9 9 * Author: Alain-Aymerick FRANCOIS
Note: See TracChangeset
for help on using the changeset viewer.