Changeset 1822367
- Timestamp:
- 02/14/2018 10:08:57 PM (8 years ago)
- Location:
- userecho
- Files:
-
- 2 edited
- 3 copied
-
tags/1.0.19 (copied) (copied from userecho/trunk)
-
tags/1.0.19/readme.txt (copied) (copied from userecho/trunk/readme.txt) (1 diff)
-
tags/1.0.19/userecho.php (copied) (copied from userecho/trunk/userecho.php) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/userecho.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
userecho/tags/1.0.19/readme.txt
r1822362 r1822367 5 5 Requires at least: 2.8 6 6 Tested up to: 4.9.4 7 Stable tag: 1.0.1 87 Stable tag: 1.0.19 8 8 9 9 Integrate UserEcho - customer feedback and helpdesk system into your blog. Using widget or link. Support SSO. -
userecho/tags/1.0.19/userecho.php
r1822362 r1822367 2 2 /* 3 3 Plugin Name: UserEcho for Wordpress - collect feedback for your blog 4 Version: 1.0.1 84 Version: 1.0.19 5 5 Plugin URI: https://userecho.com 6 6 Author: UserEcho … … 414 414 $return_url = $_REQUEST['return']; 415 415 $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 ) ) { 418 422 // If user is logged into WP, generate SSO and redirect him back to UE 419 423 header( 'Location: '.$this->get_sso_redirect_url($return_url) ) ; -
userecho/trunk/readme.txt
r1822362 r1822367 5 5 Requires at least: 2.8 6 6 Tested up to: 4.9.4 7 Stable tag: 1.0.1 87 Stable tag: 1.0.19 8 8 9 9 Integrate UserEcho - customer feedback and helpdesk system into your blog. Using widget or link. Support SSO. -
userecho/trunk/userecho.php
r1822362 r1822367 2 2 /* 3 3 Plugin Name: UserEcho for Wordpress - collect feedback for your blog 4 Version: 1.0.1 84 Version: 1.0.19 5 5 Plugin URI: https://userecho.com 6 6 Author: UserEcho … … 414 414 $return_url = $_REQUEST['return']; 415 415 $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 ) ) { 418 422 // If user is logged into WP, generate SSO and redirect him back to UE 419 423 header( 'Location: '.$this->get_sso_redirect_url($return_url) ) ;
Note: See TracChangeset
for help on using the changeset viewer.