Plugin Directory

Changeset 2932099


Ignore:
Timestamp:
06/29/2023 05:44:02 AM (21 months ago)
Author:
rafasashi
Message:

1.4.0

Location:
user-session-synchronizer/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • user-session-synchronizer/trunk/includes/class-user-session-synchronizer.php

    r1665478 r2932099  
    113113        // set secret key number
    114114       
    115         $this -> key_num=1;
     115        $this -> key_num = 1;
    116116       
    117117        if(isset($_GET['ussync-key'])){
     
    516516            //get list of domains
    517517           
    518             $domains = get_option('ussync_domain_list_'.$this -> key_num);
    519             $domains = explode(PHP_EOL,$domains);
     518            $domains = get_option( 'ussync_domain_list_'.$this -> key_num );
     519            $domains = explode( PHP_EOL, $domains );
    520520           
    521521            //get encrypted user name
  • user-session-synchronizer/trunk/includes/lib/class-user-session-synchronizer-admin-api.php

    r1492433 r2932099  
    296296    public function save_meta_boxes ( $post_id = 0 ) {
    297297
    298         if ( ! $post_id ) return;
     298        if( !$post_id || ( isset($_POST['_inline_edit']) && wp_verify_nonce($_POST['_inline_edit'],'inlineeditnonce') ) ) return;
    299299
    300300        $post_type = get_post_type( $post_id );
  • user-session-synchronizer/trunk/readme.txt

    r2302054 r2932099  
    11=== User Session Synchronizer ===
    22Contributors: rafasashi
    3 Donate link: https://www.paypal.me/recuweb
     3Donate link: https://code.recuweb.com/get/user-session-synchronizer/
    44Tags: user, session, synchronizer, cookie
    55Requires at least: 4.3
    6 Tested up to: 5.4
    7 Stable tag: 1.3.9
     6Tested up to: 6.2
     7Stable tag: 1.4.0
    88License: GPLv3 or later
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
  • user-session-synchronizer/trunk/user-session-synchronizer.php

    r2302056 r2932099  
    22/*
    33 * Plugin Name: User Session Synchronizer
    4  * Version: 1.3.9
    5  * Plugin URI: https://github.com/rafasashi/user-session-synchronizer/archive/master.zip
     4 * Version: 1.4.0
     5 * Plugin URI: https://code.recuweb.com/get/user-session-synchronizer/
    66 * Description: Keep the user logged in from one wordpress to another by synchronizing user data and cookie session.
    77 * Author: Rafasashi
    8  * Author URI: https://www.linkedin.com/in/raphaeldartigues
     8 * Author URI: https://code.recuweb.com
    99 * Requires at least: 4.3
    10  * Tested up to: 5.4
     10 * Tested up to: 6.2
    1111 *
    1212 * Text Domain: user-session-synchronizer
Note: See TracChangeset for help on using the changeset viewer.