Plugin Directory

Changeset 3192506


Ignore:
Timestamp:
11/19/2024 04:52:14 PM (17 months ago)
Author:
helloasso
Message:

Update to version 1.1.12 from GitHub

Location:
helloasso
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • helloasso/tags/1.1.12/README.txt

    r3145151 r3192506  
    66Tested up to: 6.4.3
    77Requires PHP: 7.2.34
    8 Stable tag: 1.1.11
     8Stable tag: 1.1.12
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8282== Changelog ==
    8383
     84= 1.1.12 =
     85* Correction d'une faille XSS possible sur l'insertion de l'iframe
     86
    8487= 1.1.11 =
    8588* Correction d'une faille Broken Access Control
  • helloasso/tags/1.1.12/admin/js/hello-asso-admin.js

    r3098044 r3192506  
    370370        height = "450px";
    371371    }
     372    else
     373    {
     374        type = "";
     375    }
     376
     377    if(!url.startsWith('https://www.helloasso.com/')) {
     378        url = "";
     379    }
    372380    var shortcode = '[helloasso campaign="' + url + '" type="' + type + '" height="' + height + '"]';
    373381    jQuery('#ha-popup').hide();
  • helloasso/tags/1.1.12/hello-asso.php

    r3145151 r3192506  
    1717 * Plugin URI:        https://centredaide.helloasso.com/s/article/paiement-en-ligne-wordpress-integrer-vos-campagnes-helloasso
    1818 * Description:       HelloAsso est la solution gratuite des associations pour collecter des paiements et des dons sur internet.
    19  * Version:           1.1.11
     19 * Version:           1.1.12
    2020 * Author:            HelloAsso
    2121 * Author URI:        https://helloasso.com
     
    3737 * Rename this for your plugin and update it as you release new versions.
    3838 */
    39 define('HELLO_ASSO_VERSION', '1.1.11');
     39define('HELLO_ASSO_VERSION', '1.1.12');
    4040
    4141/**
  • helloasso/tags/1.1.12/public/class-hello-asso-public.php

    r3110614 r3192506  
    133133                $height = preg_match($pattern, $atts['height'] ?? 0) ? $atts['height'] : "450px";
    134134                $styleIframe = 'style="width:350px; height:'. $height . '; border:none;"';
     135            } else {
     136                $type = "";
     137            }
     138
     139            if(!str_starts_with($url, "https://www.helloasso.com/")) {
     140                $url = "";
    135141            }
    136142
  • helloasso/trunk/README.txt

    r3145151 r3192506  
    66Tested up to: 6.4.3
    77Requires PHP: 7.2.34
    8 Stable tag: 1.1.11
     8Stable tag: 1.1.12
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8282== Changelog ==
    8383
     84= 1.1.12 =
     85* Correction d'une faille XSS possible sur l'insertion de l'iframe
     86
    8487= 1.1.11 =
    8588* Correction d'une faille Broken Access Control
  • helloasso/trunk/admin/js/hello-asso-admin.js

    r3098044 r3192506  
    370370        height = "450px";
    371371    }
     372    else
     373    {
     374        type = "";
     375    }
     376
     377    if(!url.startsWith('https://www.helloasso.com/')) {
     378        url = "";
     379    }
    372380    var shortcode = '[helloasso campaign="' + url + '" type="' + type + '" height="' + height + '"]';
    373381    jQuery('#ha-popup').hide();
  • helloasso/trunk/hello-asso.php

    r3145151 r3192506  
    1717 * Plugin URI:        https://centredaide.helloasso.com/s/article/paiement-en-ligne-wordpress-integrer-vos-campagnes-helloasso
    1818 * Description:       HelloAsso est la solution gratuite des associations pour collecter des paiements et des dons sur internet.
    19  * Version:           1.1.11
     19 * Version:           1.1.12
    2020 * Author:            HelloAsso
    2121 * Author URI:        https://helloasso.com
     
    3737 * Rename this for your plugin and update it as you release new versions.
    3838 */
    39 define('HELLO_ASSO_VERSION', '1.1.11');
     39define('HELLO_ASSO_VERSION', '1.1.12');
    4040
    4141/**
  • helloasso/trunk/public/class-hello-asso-public.php

    r3110614 r3192506  
    133133                $height = preg_match($pattern, $atts['height'] ?? 0) ? $atts['height'] : "450px";
    134134                $styleIframe = 'style="width:350px; height:'. $height . '; border:none;"';
     135            } else {
     136                $type = "";
     137            }
     138
     139            if(!str_starts_with($url, "https://www.helloasso.com/")) {
     140                $url = "";
    135141            }
    136142
Note: See TracChangeset for help on using the changeset viewer.