Plugin Directory

Changeset 2627484


Ignore:
Timestamp:
11/10/2021 03:12:47 PM (4 years ago)
Author:
impacttechpartners
Message:

release version 1.0.13 fix for utt script not saving

Location:
impact-partnership-cloud
Files:
3 edited
12 copied

Legend:

Unmodified
Added
Removed
  • impact-partnership-cloud/tags/1.0.13/changelog.txt

    r2603286 r2627484  
    11*** Impact Partnership Cloud ***
     2
     32021-11-10 - version 1.0.13
     4 * Fix - Removed sanitization for utt script field that was preventing saving the script correctly
    25
    362021-09-22 - version 1.0.12
  • impact-partnership-cloud/tags/1.0.13/impact.php

    r2603286 r2627484  
    33 * Plugin Name:       Impact: Partnership Cloud
    44 * Description:       Partnership cloud app plugin for Woocomerce that tracks every conversion made trough one of Impact's referral links.
    5  * Version:           1.0.12
     5 * Version:           1.0.13
    66 * Requires at least: 5.0
    77 * Requires PHP:      7.0
     
    3131     * @var string
    3232     */
    33     private $version = '1.0.12';
     33    private $version = '1.0.13';
    3434    /**
    3535     * Singleton instance of the plugin
     
    315315        $options         = get_option( 'impact_settings_option_name' );
    316316        $sanitary_values = array();
    317 
    318317        foreach ( $input as $key => $value ) {
    319318            if ( isset( $input[ $key ] ) ) {
    320319                $sanitary_values[ $key ] = wp_strip_all_tags( stripslashes( $input[ $key ] ) );
    321320            }
    322 
     321            if ( 'custom_script_5' === $key ) {
     322                $sanitary_values[ $key ] = $input[ $key ];
     323            }
    323324            if ( empty( $value ) && 'custom_script_5' !== $key ) {
    324325                $e_value = $key;
     
    567568            return $new_value;
    568569        }
    569 
    570570        $bearer = get_option( 'impact_request_value' );
    571571
  • impact-partnership-cloud/tags/1.0.13/readme.txt

    r2603286 r2627484  
    44Tested up to: 5.8
    55Requires PHP: 7.0
    6 Stable tag: 1.0.12
     6Stable tag: 1.0.13
    77License: GPLv2 or later License
    88URI: http://www.gnu.org/licenses/gpl-2.0.html
  • impact-partnership-cloud/trunk/changelog.txt

    r2603286 r2627484  
    11*** Impact Partnership Cloud ***
     2
     32021-11-10 - version 1.0.13
     4 * Fix - Removed sanitization for utt script field that was preventing saving the script correctly
    25
    362021-09-22 - version 1.0.12
  • impact-partnership-cloud/trunk/impact.php

    r2603286 r2627484  
    33 * Plugin Name:       Impact: Partnership Cloud
    44 * Description:       Partnership cloud app plugin for Woocomerce that tracks every conversion made trough one of Impact's referral links.
    5  * Version:           1.0.12
     5 * Version:           1.0.13
    66 * Requires at least: 5.0
    77 * Requires PHP:      7.0
     
    3131     * @var string
    3232     */
    33     private $version = '1.0.12';
     33    private $version = '1.0.13';
    3434    /**
    3535     * Singleton instance of the plugin
     
    315315        $options         = get_option( 'impact_settings_option_name' );
    316316        $sanitary_values = array();
    317 
    318317        foreach ( $input as $key => $value ) {
    319318            if ( isset( $input[ $key ] ) ) {
    320319                $sanitary_values[ $key ] = wp_strip_all_tags( stripslashes( $input[ $key ] ) );
    321320            }
    322 
     321            if ( 'custom_script_5' === $key ) {
     322                $sanitary_values[ $key ] = $input[ $key ];
     323            }
    323324            if ( empty( $value ) && 'custom_script_5' !== $key ) {
    324325                $e_value = $key;
     
    567568            return $new_value;
    568569        }
    569 
    570570        $bearer = get_option( 'impact_request_value' );
    571571
  • impact-partnership-cloud/trunk/readme.txt

    r2603286 r2627484  
    44Tested up to: 5.8
    55Requires PHP: 7.0
    6 Stable tag: 1.0.12
     6Stable tag: 1.0.13
    77License: GPLv2 or later License
    88URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset for help on using the changeset viewer.