Plugin Directory

Changeset 3078943


Ignore:
Timestamp:
04/29/2024 06:39:35 PM (11 months ago)
Author:
ShareThis
Message:

Update to version 1.4.2 from GitHub

Location:
sharethis-follow-buttons
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • sharethis-follow-buttons/tags/1.4.2/.wp-env.json

    r3002827 r3078943  
    33    "."
    44  ],
    5   "phpVersion": "8.0",
     5  "phpVersion": "8.2",
    66  "port": 88,
    77  "env": {
  • sharethis-follow-buttons/tags/1.4.2/php/class-follow-buttons.php

    r3002827 r3078943  
    681681        $screen = get_current_screen();
    682682
    683         $reset = filter_input( INPUT_GET, 'reset', FILTER_SANITIZE_STRING );
     683        $reset = filter_input( INPUT_GET, 'reset', FILTER_UNSAFE_RAW );
    684684        $reset = sanitize_text_field( wp_unslash( $reset ) );
    685685
     
    722722        $product = null !== $product && false !== $product ? ucfirst( $product ) : 'your';
    723723        $gen_url = '<a href="' . esc_url( admin_url( 'admin.php?page=sharethis-share-buttons&nft' ) ) . '">configuration</a>';
    724 
    725         $nft = filter_input( INPUT_GET, 'nft', FILTER_SANITIZE_STRING );
     724        $nft     = filter_input( INPUT_GET, 'nft', FILTER_UNSAFE_RAW );
    726725
    727726        if ( false === $this->is_property_id_set() ) {
  • sharethis-follow-buttons/tags/1.4.2/readme.txt

    r3002850 r3078943  
    66Author: ShareThis
    77Requires at least: 5.9
    8 Tested up to: 6.4.1
    9 Stable tag: 1.4.1
    10 Version: 1.4.1
     8Tested up to: 6.5.2
     9Stable tag: 1.4.2
     10Version: 1.4.2
    1111License: GPLv2 or later
    1212
     
    6262== Changelog ==
    6363
     64= 1.4.2 =
     65* Fix deprecation errors.
     66* test wp ver 6.5.2.
     67
    6468= 1.4.1 =
    6569* Fix admin enqueue
  • sharethis-follow-buttons/tags/1.4.2/sharethis-follow-buttons.php

    r3002850 r3078943  
    44 * Plugin URI: https://www.sharethis.com/platform/follow-buttons-wordpress/
    55 * Description: Integrates the ShareThis Follow Buttons directly into your website.
    6  * Version: 1.4.1
     6 * Version: 1.4.2
    77 * Author: ShareThis
    88 * Author URI: https://sharethis.com/
     
    1111 * License: GPL v2 or later
    1212 *
    13  * Copyright 2022 ShareThis
     13 * Copyright 2024 ShareThis
    1414 *
    1515 * This program is free software; you can redistribute it and/or modify
     
    2929 * Plugin version constant.
    3030 */
    31 const SHARETHIS_FOLLOW_BUTTONS_VERSION = '1.4.1';
     31const SHARETHIS_FOLLOW_BUTTONS_VERSION = '1.4.2';
    3232
    3333if ( version_compare( phpversion(), '5.3', '>=' ) ) {
  • sharethis-follow-buttons/trunk/.wp-env.json

    r3002827 r3078943  
    33    "."
    44  ],
    5   "phpVersion": "8.0",
     5  "phpVersion": "8.2",
    66  "port": 88,
    77  "env": {
  • sharethis-follow-buttons/trunk/php/class-follow-buttons.php

    r3002827 r3078943  
    681681        $screen = get_current_screen();
    682682
    683         $reset = filter_input( INPUT_GET, 'reset', FILTER_SANITIZE_STRING );
     683        $reset = filter_input( INPUT_GET, 'reset', FILTER_UNSAFE_RAW );
    684684        $reset = sanitize_text_field( wp_unslash( $reset ) );
    685685
     
    722722        $product = null !== $product && false !== $product ? ucfirst( $product ) : 'your';
    723723        $gen_url = '<a href="' . esc_url( admin_url( 'admin.php?page=sharethis-share-buttons&nft' ) ) . '">configuration</a>';
    724 
    725         $nft = filter_input( INPUT_GET, 'nft', FILTER_SANITIZE_STRING );
     724        $nft     = filter_input( INPUT_GET, 'nft', FILTER_UNSAFE_RAW );
    726725
    727726        if ( false === $this->is_property_id_set() ) {
  • sharethis-follow-buttons/trunk/readme.txt

    r3002850 r3078943  
    66Author: ShareThis
    77Requires at least: 5.9
    8 Tested up to: 6.4.1
    9 Stable tag: 1.4.1
    10 Version: 1.4.1
     8Tested up to: 6.5.2
     9Stable tag: 1.4.2
     10Version: 1.4.2
    1111License: GPLv2 or later
    1212
     
    6262== Changelog ==
    6363
     64= 1.4.2 =
     65* Fix deprecation errors.
     66* test wp ver 6.5.2.
     67
    6468= 1.4.1 =
    6569* Fix admin enqueue
  • sharethis-follow-buttons/trunk/sharethis-follow-buttons.php

    r3002850 r3078943  
    44 * Plugin URI: https://www.sharethis.com/platform/follow-buttons-wordpress/
    55 * Description: Integrates the ShareThis Follow Buttons directly into your website.
    6  * Version: 1.4.1
     6 * Version: 1.4.2
    77 * Author: ShareThis
    88 * Author URI: https://sharethis.com/
     
    1111 * License: GPL v2 or later
    1212 *
    13  * Copyright 2022 ShareThis
     13 * Copyright 2024 ShareThis
    1414 *
    1515 * This program is free software; you can redistribute it and/or modify
     
    2929 * Plugin version constant.
    3030 */
    31 const SHARETHIS_FOLLOW_BUTTONS_VERSION = '1.4.1';
     31const SHARETHIS_FOLLOW_BUTTONS_VERSION = '1.4.2';
    3232
    3333if ( version_compare( phpversion(), '5.3', '>=' ) ) {
Note: See TracChangeset for help on using the changeset viewer.