Changeset 2627484
- Timestamp:
- 11/10/2021 03:12:47 PM (4 years ago)
- Location:
- impact-partnership-cloud
- Files:
-
- 3 edited
- 12 copied
-
tags/1.0.13 (copied) (copied from impact-partnership-cloud/trunk)
-
tags/1.0.13/changelog.txt (copied) (copied from impact-partnership-cloud/trunk/changelog.txt) (1 diff)
-
tags/1.0.13/impact.php (copied) (copied from impact-partnership-cloud/trunk/impact.php) (4 diffs)
-
tags/1.0.13/includes/impact_settings_page.php (copied) (copied from impact-partnership-cloud/trunk/includes/impact_settings_page.php)
-
tags/1.0.13/includes/no_woocommerce_access.php (copied) (copied from impact-partnership-cloud/trunk/includes/no_woocommerce_access.php)
-
tags/1.0.13/includes/utt-script.php (copied) (copied from impact-partnership-cloud/trunk/includes/utt-script.php)
-
tags/1.0.13/index.php (copied) (copied from impact-partnership-cloud/trunk/index.php)
-
tags/1.0.13/js/impact.js (copied) (copied from impact-partnership-cloud/trunk/js/impact.js)
-
tags/1.0.13/js/scripts/impact-default-script.js (copied) (copied from impact-partnership-cloud/trunk/js/scripts/impact-default-script.js)
-
tags/1.0.13/js/scripts/impact-user-agent-script.js (copied) (copied from impact-partnership-cloud/trunk/js/scripts/impact-user-agent-script.js)
-
tags/1.0.13/js/scripts/impact-utt-getclickid.js (copied) (copied from impact-partnership-cloud/trunk/js/scripts/impact-utt-getclickid.js)
-
tags/1.0.13/readme.txt (copied) (copied from impact-partnership-cloud/trunk/readme.txt) (1 diff)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/impact.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
impact-partnership-cloud/tags/1.0.13/changelog.txt
r2603286 r2627484 1 1 *** Impact Partnership Cloud *** 2 3 2021-11-10 - version 1.0.13 4 * Fix - Removed sanitization for utt script field that was preventing saving the script correctly 2 5 3 6 2021-09-22 - version 1.0.12 -
impact-partnership-cloud/tags/1.0.13/impact.php
r2603286 r2627484 3 3 * Plugin Name: Impact: Partnership Cloud 4 4 * Description: Partnership cloud app plugin for Woocomerce that tracks every conversion made trough one of Impact's referral links. 5 * Version: 1.0.1 25 * Version: 1.0.13 6 6 * Requires at least: 5.0 7 7 * Requires PHP: 7.0 … … 31 31 * @var string 32 32 */ 33 private $version = '1.0.1 2';33 private $version = '1.0.13'; 34 34 /** 35 35 * Singleton instance of the plugin … … 315 315 $options = get_option( 'impact_settings_option_name' ); 316 316 $sanitary_values = array(); 317 318 317 foreach ( $input as $key => $value ) { 319 318 if ( isset( $input[ $key ] ) ) { 320 319 $sanitary_values[ $key ] = wp_strip_all_tags( stripslashes( $input[ $key ] ) ); 321 320 } 322 321 if ( 'custom_script_5' === $key ) { 322 $sanitary_values[ $key ] = $input[ $key ]; 323 } 323 324 if ( empty( $value ) && 'custom_script_5' !== $key ) { 324 325 $e_value = $key; … … 567 568 return $new_value; 568 569 } 569 570 570 $bearer = get_option( 'impact_request_value' ); 571 571 -
impact-partnership-cloud/tags/1.0.13/readme.txt
r2603286 r2627484 4 4 Tested up to: 5.8 5 5 Requires PHP: 7.0 6 Stable tag: 1.0.1 26 Stable tag: 1.0.13 7 7 License: GPLv2 or later License 8 8 URI: http://www.gnu.org/licenses/gpl-2.0.html -
impact-partnership-cloud/trunk/changelog.txt
r2603286 r2627484 1 1 *** Impact Partnership Cloud *** 2 3 2021-11-10 - version 1.0.13 4 * Fix - Removed sanitization for utt script field that was preventing saving the script correctly 2 5 3 6 2021-09-22 - version 1.0.12 -
impact-partnership-cloud/trunk/impact.php
r2603286 r2627484 3 3 * Plugin Name: Impact: Partnership Cloud 4 4 * Description: Partnership cloud app plugin for Woocomerce that tracks every conversion made trough one of Impact's referral links. 5 * Version: 1.0.1 25 * Version: 1.0.13 6 6 * Requires at least: 5.0 7 7 * Requires PHP: 7.0 … … 31 31 * @var string 32 32 */ 33 private $version = '1.0.1 2';33 private $version = '1.0.13'; 34 34 /** 35 35 * Singleton instance of the plugin … … 315 315 $options = get_option( 'impact_settings_option_name' ); 316 316 $sanitary_values = array(); 317 318 317 foreach ( $input as $key => $value ) { 319 318 if ( isset( $input[ $key ] ) ) { 320 319 $sanitary_values[ $key ] = wp_strip_all_tags( stripslashes( $input[ $key ] ) ); 321 320 } 322 321 if ( 'custom_script_5' === $key ) { 322 $sanitary_values[ $key ] = $input[ $key ]; 323 } 323 324 if ( empty( $value ) && 'custom_script_5' !== $key ) { 324 325 $e_value = $key; … … 567 568 return $new_value; 568 569 } 569 570 570 $bearer = get_option( 'impact_request_value' ); 571 571 -
impact-partnership-cloud/trunk/readme.txt
r2603286 r2627484 4 4 Tested up to: 5.8 5 5 Requires PHP: 7.0 6 Stable tag: 1.0.1 26 Stable tag: 1.0.13 7 7 License: GPLv2 or later License 8 8 URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.