Changeset 2726271
- Timestamp:
- 05/18/2022 07:00:01 PM (4 years ago)
- Location:
- second-street-promotion
- Files:
-
- 4 edited
- 1 copied
-
tags/3.1.7 (copied) (copied from second-street-promotion/trunk)
-
tags/3.1.7/readme.txt (modified) (2 diffs)
-
tags/3.1.7/secondstreet-promotion.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/secondstreet-promotion.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
second-street-promotion/tags/3.1.7/readme.txt
r2693714 r2726271 4 4 Requires at least: 3.0 5 5 Tested up to: 5.9.2 6 Stable tag: 3.1. 66 Stable tag: 3.1.7 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 46 46 = 3.1.5 = 47 47 * Support for the ss-preferences shortcode 48 49 = 3.1.7 = 50 * Escape echoed data to help prevent XSS attacks -
second-street-promotion/tags/3.1.7/secondstreet-promotion.php
r2693714 r2726271 3 3 * Plugin Name: Second Street 4 4 * Description: Plugin will allow Second Street Affiliates to embed a Second Street Promotion within their WordPress site(s). 5 * Version: 3.1. 65 * Version: 3.1.7 6 6 * Author: Second Street 7 7 * Author URI: http://secondstreet.com … … 101 101 102 102 if ( $a['dev'] === 'true' ) { 103 return '<script src="' . esc_url( $ss_script_url_prefix . '.dev' . $ss_script_url_suffix ) . '" data-ss-embed="feed" data-organization-id="' . $a['organization_id']. '"></script>';103 return '<script src="' . esc_url( $ss_script_url_prefix . '.dev' . $ss_script_url_suffix ) . '" data-ss-embed="feed" data-organization-id="' . esc_attr( $a['organization_id'] ) . '"></script>'; 104 104 } else { 105 return '<script src="' . esc_url( $ss_script_url_prefix . $ss_script_url_suffix ) . '" data-ss-embed="feed" data-organization-id="' . $a['organization_id']. '"></script>';105 return '<script src="' . esc_url( $ss_script_url_prefix . $ss_script_url_suffix ) . '" data-ss-embed="feed" data-organization-id="' . esc_attr( $a['organization_id'] ) . '"></script>'; 106 106 } 107 107 } -
second-street-promotion/trunk/readme.txt
r2693714 r2726271 4 4 Requires at least: 3.0 5 5 Tested up to: 5.9.2 6 Stable tag: 3.1. 66 Stable tag: 3.1.7 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 46 46 = 3.1.5 = 47 47 * Support for the ss-preferences shortcode 48 49 = 3.1.7 = 50 * Escape echoed data to help prevent XSS attacks -
second-street-promotion/trunk/secondstreet-promotion.php
r2693714 r2726271 3 3 * Plugin Name: Second Street 4 4 * Description: Plugin will allow Second Street Affiliates to embed a Second Street Promotion within their WordPress site(s). 5 * Version: 3.1. 65 * Version: 3.1.7 6 6 * Author: Second Street 7 7 * Author URI: http://secondstreet.com … … 101 101 102 102 if ( $a['dev'] === 'true' ) { 103 return '<script src="' . esc_url( $ss_script_url_prefix . '.dev' . $ss_script_url_suffix ) . '" data-ss-embed="feed" data-organization-id="' . $a['organization_id']. '"></script>';103 return '<script src="' . esc_url( $ss_script_url_prefix . '.dev' . $ss_script_url_suffix ) . '" data-ss-embed="feed" data-organization-id="' . esc_attr( $a['organization_id'] ) . '"></script>'; 104 104 } else { 105 return '<script src="' . esc_url( $ss_script_url_prefix . $ss_script_url_suffix ) . '" data-ss-embed="feed" data-organization-id="' . $a['organization_id']. '"></script>';105 return '<script src="' . esc_url( $ss_script_url_prefix . $ss_script_url_suffix ) . '" data-ss-embed="feed" data-organization-id="' . esc_attr( $a['organization_id'] ) . '"></script>'; 106 106 } 107 107 }
Note: See TracChangeset
for help on using the changeset viewer.