Changeset 1803971
- Timestamp:
- 01/16/2018 06:46:35 PM (8 years ago)
- Location:
- userecho
- Files:
-
- 4 edited
- 1 copied
-
tags/1.0.9 (copied) (copied from userecho/trunk)
-
tags/1.0.9/readme.txt (modified) (2 diffs)
-
tags/1.0.9/userecho.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/userecho.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
userecho/tags/1.0.9/readme.txt
r1757796 r1803971 4 4 Tags: feedback, users community, widget, ideas, helpdesk, livechat 5 5 Requires at least: 2.8 6 Tested up to: 4. 8.37 Stable tag: 1.0. 86 Tested up to: 4.9.1 7 Stable tag: 1.0.9 8 8 9 9 Integrate UserEcho - customer feedback and helpdesk system into your blog. Using widget or link. Support SSO. … … 45 45 == Changelog == 46 46 47 = 1.0.9 = 48 * SSO integration - the bug fixes. 49 = 1.0.8 = 47 50 = 1.0.7 = 48 51 * SSO integration - redirect to settings domain only. -
userecho/tags/1.0.9/userecho.php
r1757798 r1803971 2 2 /* 3 3 Plugin Name: UserEcho for Wordpress - collect feedback for your blog 4 Version: 1.0. 84 Version: 1.0.9 5 5 Plugin URI: https://userecho.com 6 6 Author: UserEcho … … 418 418 $options = $this->get_options(); 419 419 $redirect_host = parse_url($return_url, PHP_URL_HOST); 420 $settings_host = parse_url($options['domain'], PHP_URL_HOST);420 $settings_host = $options['domain']; 421 421 if ($redirect_host == $settings_host){ 422 422 if (strpos($return_url, '?') == FALSE){ … … 427 427 return $return_url . 'sso_token=' . $this->get_sso_token(); 428 428 } else { 429 return "http://" . $ options['domain']. "/?host1=".$settings_host."&host2=".$redirect_host;429 return "http://" . $settings_host . "/?host1=".$settings_host."&host2=".$redirect_host; 430 430 } 431 431 } -
userecho/trunk/readme.txt
r1757796 r1803971 4 4 Tags: feedback, users community, widget, ideas, helpdesk, livechat 5 5 Requires at least: 2.8 6 Tested up to: 4. 8.37 Stable tag: 1.0. 86 Tested up to: 4.9.1 7 Stable tag: 1.0.9 8 8 9 9 Integrate UserEcho - customer feedback and helpdesk system into your blog. Using widget or link. Support SSO. … … 45 45 == Changelog == 46 46 47 = 1.0.9 = 48 * SSO integration - the bug fixes. 49 = 1.0.8 = 47 50 = 1.0.7 = 48 51 * SSO integration - redirect to settings domain only. -
userecho/trunk/userecho.php
r1757798 r1803971 2 2 /* 3 3 Plugin Name: UserEcho for Wordpress - collect feedback for your blog 4 Version: 1.0. 84 Version: 1.0.9 5 5 Plugin URI: https://userecho.com 6 6 Author: UserEcho … … 418 418 $options = $this->get_options(); 419 419 $redirect_host = parse_url($return_url, PHP_URL_HOST); 420 $settings_host = parse_url($options['domain'], PHP_URL_HOST);420 $settings_host = $options['domain']; 421 421 if ($redirect_host == $settings_host){ 422 422 if (strpos($return_url, '?') == FALSE){ … … 427 427 return $return_url . 'sso_token=' . $this->get_sso_token(); 428 428 } else { 429 return "http://" . $ options['domain']. "/?host1=".$settings_host."&host2=".$redirect_host;429 return "http://" . $settings_host . "/?host1=".$settings_host."&host2=".$redirect_host; 430 430 } 431 431 }
Note: See TracChangeset
for help on using the changeset viewer.