Plugin Directory

Changeset 1803971


Ignore:
Timestamp:
01/16/2018 06:46:35 PM (8 years ago)
Author:
MVR
Message:

tagging version 1.0.9

Location:
userecho
Files:
4 edited
1 copied

Legend:

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

    r1757796 r1803971  
    44Tags: feedback, users community, widget, ideas, helpdesk, livechat
    55Requires at least: 2.8
    6 Tested up to: 4.8.3
    7 Stable tag: 1.0.8
     6Tested up to: 4.9.1
     7Stable tag: 1.0.9
    88
    99Integrate UserEcho - customer feedback and helpdesk system into your blog. Using widget or link. Support SSO.
     
    4545== Changelog ==
    4646
     47= 1.0.9 =
     48* SSO integration - the bug fixes.
     49= 1.0.8 =
    4750= 1.0.7 =
    4851* SSO integration - redirect to settings domain only.
  • userecho/tags/1.0.9/userecho.php

    r1757798 r1803971  
    22/*
    33Plugin Name: UserEcho for Wordpress - collect feedback for your blog
    4 Version: 1.0.8
     4Version: 1.0.9
    55Plugin URI: https://userecho.com
    66Author: UserEcho
     
    418418        $options = $this->get_options();
    419419        $redirect_host = parse_url($return_url, PHP_URL_HOST);
    420         $settings_host = parse_url($options['domain'], PHP_URL_HOST);
     420        $settings_host = $options['domain'];
    421421        if ($redirect_host == $settings_host){
    422422            if (strpos($return_url, '?') == FALSE){
     
    427427            return $return_url . 'sso_token=' . $this->get_sso_token();
    428428        } else {
    429             return "http://" . $options['domain'] . "/?host1=".$settings_host."&host2=".$redirect_host;
     429            return "http://" . $settings_host . "/?host1=".$settings_host."&host2=".$redirect_host;
    430430        }
    431431    }
  • userecho/trunk/readme.txt

    r1757796 r1803971  
    44Tags: feedback, users community, widget, ideas, helpdesk, livechat
    55Requires at least: 2.8
    6 Tested up to: 4.8.3
    7 Stable tag: 1.0.8
     6Tested up to: 4.9.1
     7Stable tag: 1.0.9
    88
    99Integrate UserEcho - customer feedback and helpdesk system into your blog. Using widget or link. Support SSO.
     
    4545== Changelog ==
    4646
     47= 1.0.9 =
     48* SSO integration - the bug fixes.
     49= 1.0.8 =
    4750= 1.0.7 =
    4851* SSO integration - redirect to settings domain only.
  • userecho/trunk/userecho.php

    r1757798 r1803971  
    22/*
    33Plugin Name: UserEcho for Wordpress - collect feedback for your blog
    4 Version: 1.0.8
     4Version: 1.0.9
    55Plugin URI: https://userecho.com
    66Author: UserEcho
     
    418418        $options = $this->get_options();
    419419        $redirect_host = parse_url($return_url, PHP_URL_HOST);
    420         $settings_host = parse_url($options['domain'], PHP_URL_HOST);
     420        $settings_host = $options['domain'];
    421421        if ($redirect_host == $settings_host){
    422422            if (strpos($return_url, '?') == FALSE){
     
    427427            return $return_url . 'sso_token=' . $this->get_sso_token();
    428428        } else {
    429             return "http://" . $options['domain'] . "/?host1=".$settings_host."&host2=".$redirect_host;
     429            return "http://" . $settings_host . "/?host1=".$settings_host."&host2=".$redirect_host;
    430430        }
    431431    }
Note: See TracChangeset for help on using the changeset viewer.