Plugin Directory

Changeset 2726271


Ignore:
Timestamp:
05/18/2022 07:00:01 PM (4 years ago)
Author:
ssmwordpressdev
Message:

Update to version 3.1.7 from GitHub

Location:
second-street-promotion
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • second-street-promotion/tags/3.1.7/readme.txt

    r2693714 r2726271  
    44Requires at least: 3.0
    55Tested up to: 5.9.2
    6 Stable tag: 3.1.6
     6Stable tag: 3.1.7
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4646= 3.1.5 =
    4747* 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  
    33 * Plugin Name: Second Street
    44 * Description: Plugin will allow Second Street Affiliates to embed a Second Street Promotion within their WordPress site(s).
    5  * Version: 3.1.6
     5 * Version: 3.1.7
    66 * Author: Second Street
    77 * Author URI: http://secondstreet.com
     
    101101
    102102    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>';
    104104    } 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>';
    106106    }
    107107}
  • second-street-promotion/trunk/readme.txt

    r2693714 r2726271  
    44Requires at least: 3.0
    55Tested up to: 5.9.2
    6 Stable tag: 3.1.6
     6Stable tag: 3.1.7
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4646= 3.1.5 =
    4747* 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  
    33 * Plugin Name: Second Street
    44 * Description: Plugin will allow Second Street Affiliates to embed a Second Street Promotion within their WordPress site(s).
    5  * Version: 3.1.6
     5 * Version: 3.1.7
    66 * Author: Second Street
    77 * Author URI: http://secondstreet.com
     
    101101
    102102    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>';
    104104    } 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>';
    106106    }
    107107}
Note: See TracChangeset for help on using the changeset viewer.