Changeset 3215477
- Timestamp:
- 12/31/2024 09:32:23 PM (15 months ago)
- Location:
- ce21-suite/trunk
- Files:
-
- 2 edited
-
admin/js/post-quick-edit-script.js (modified) (1 diff)
-
single-sign-on-ce21.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ce21-suite/trunk/admin/js/post-quick-edit-script.js
r2843982 r3215477 39 39 $row.find("input.qbe_group.be_group").each(function(){ 40 40 if($(this).val() == val){ 41 $(this). attr('checked', true);41 $(this).prop('checked', true); 42 42 } 43 43 }); -
ce21-suite/trunk/single-sign-on-ce21.php
r3205463 r3215477 16 16 * Plugin URI: https://www.ce21.com 17 17 * Description: CE21 Suite. 18 * Version: 2.2. 118 * Version: 2.2.2 19 19 * Author: CE21 20 20 * Author URI: https://www.ce21.com … … 35 35 * Rename this for your plugin and update it as you release new versions. 36 36 */ 37 define( 'SINGLE_SIGN_ON_CE21_VERSION', '2. 1.1' );37 define( 'SINGLE_SIGN_ON_CE21_VERSION', '2.2.2' ); 38 38 39 39 define( 'SINGLE_SIGN_ON_CE21__PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); … … 722 722 ce21_wp_error_handle(); 723 723 724 if (!empty($authentication_plan_value) && !empty($result_ce21) ) {724 if (!empty($authentication_plan_value) && !empty($result_ce21) && !is_page( 'article-authentication-ce21' )) { 725 725 726 726 if (!is_user_logged_in()) { … … 751 751 //$current_url_ce21 = home_url(add_query_arg(array(), $wp->request)); 752 752 //$return_url_ce21 = get_option('authorizeURI_ce21') . "/wpauthorize/login?returnURL=" . $current_url_ce21; 753 754 $postId_ce21 = get_the_ID(); 755 $current_url_ce21 = home_url("article-authentication-ce21") . '/?postid=' . $postId_ce21 . '&_=' . round(microtime(true) * 1000); 756 $return_url_ce21 = get_option('authorizeURI_ce21') . "/WPAuthorize/LoginNew?returnURL=" . $current_url_ce21; 757 758 ?> 759 <script type="text/javascript">location.href = "<?php echo esc_url($return_url_ce21); ?>";</script><?php 760 exit; 753 754 $postId_ce21 = get_the_ID(); 755 $current_url_ce21 = home_url("article-authentication-ce21") . '/?postid=' . $postId_ce21 . '&_=' . round(microtime(true) * 1000); 756 $return_url_ce21 = get_option('authorizeURI_ce21') . "/WPAuthorize/LoginNew?returnURL=" . $current_url_ce21; 757 758 ?> 759 <script type="text/javascript">location.href = "<?php echo esc_url($return_url_ce21); ?>";</script><?php 760 exit; 761 761 762 } 762 763 }
Note: See TracChangeset
for help on using the changeset viewer.