Plugin Directory

Changeset 1822367


Ignore:
Timestamp:
02/14/2018 10:08:57 PM (8 years ago)
Author:
MVR
Message:

tagging version 1.0.19

Location:
userecho
Files:
2 edited
3 copied

Legend:

Unmodified
Added
Removed
  • userecho/tags/1.0.19/readme.txt

    r1822362 r1822367  
    55Requires at least: 2.8
    66Tested up to: 4.9.4
    7 Stable tag: 1.0.18
     7Stable tag: 1.0.19
    88
    99Integrate UserEcho - customer feedback and helpdesk system into your blog. Using widget or link. Support SSO.
  • userecho/tags/1.0.19/userecho.php

    r1822362 r1822367  
    22/*
    33Plugin Name: UserEcho for Wordpress - collect feedback for your blog
    4 Version: 1.0.18
     4Version: 1.0.19
    55Plugin URI: https://userecho.com
    66Author: UserEcho
     
    414414                $return_url = $_REQUEST['return'];
    415415                $current_user = $this->get_current_user();
    416                 #if ( !empty( $this->get_current_user()->ID) ) {
    417                 if ( is_a( $current_user, 'WP_User' ) && !empty( $current_user->user_login ) ) {               
     416
     417                if (isset( $_GET['skip1'] ) && $_GET['skip'] == 'true'){
     418                    return;
     419                }
     420
     421                if ( is_a( $current_user, 'WP_User' ) && !empty( $current_user->user_login ) ) {
    418422                    // If user is logged into WP, generate SSO and redirect him back to UE
    419423                    header( 'Location: '.$this->get_sso_redirect_url($return_url) ) ;
  • userecho/trunk/readme.txt

    r1822362 r1822367  
    55Requires at least: 2.8
    66Tested up to: 4.9.4
    7 Stable tag: 1.0.18
     7Stable tag: 1.0.19
    88
    99Integrate UserEcho - customer feedback and helpdesk system into your blog. Using widget or link. Support SSO.
  • userecho/trunk/userecho.php

    r1822362 r1822367  
    22/*
    33Plugin Name: UserEcho for Wordpress - collect feedback for your blog
    4 Version: 1.0.18
     4Version: 1.0.19
    55Plugin URI: https://userecho.com
    66Author: UserEcho
     
    414414                $return_url = $_REQUEST['return'];
    415415                $current_user = $this->get_current_user();
    416                 #if ( !empty( $this->get_current_user()->ID) ) {
    417                 if ( is_a( $current_user, 'WP_User' ) && !empty( $current_user->user_login ) ) {               
     416
     417                if (isset( $_GET['skip1'] ) && $_GET['skip'] == 'true'){
     418                    return;
     419                }
     420
     421                if ( is_a( $current_user, 'WP_User' ) && !empty( $current_user->user_login ) ) {
    418422                    // If user is logged into WP, generate SSO and redirect him back to UE
    419423                    header( 'Location: '.$this->get_sso_redirect_url($return_url) ) ;
Note: See TracChangeset for help on using the changeset viewer.