Changeset 3078943
- Timestamp:
- 04/29/2024 06:39:35 PM (11 months ago)
- 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 3 3 "." 4 4 ], 5 "phpVersion": "8. 0",5 "phpVersion": "8.2", 6 6 "port": 88, 7 7 "env": { -
sharethis-follow-buttons/tags/1.4.2/php/class-follow-buttons.php
r3002827 r3078943 681 681 $screen = get_current_screen(); 682 682 683 $reset = filter_input( INPUT_GET, 'reset', FILTER_ SANITIZE_STRING);683 $reset = filter_input( INPUT_GET, 'reset', FILTER_UNSAFE_RAW ); 684 684 $reset = sanitize_text_field( wp_unslash( $reset ) ); 685 685 … … 722 722 $product = null !== $product && false !== $product ? ucfirst( $product ) : 'your'; 723 723 $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 ); 726 725 727 726 if ( false === $this->is_property_id_set() ) { -
sharethis-follow-buttons/tags/1.4.2/readme.txt
r3002850 r3078943 6 6 Author: ShareThis 7 7 Requires at least: 5.9 8 Tested up to: 6. 4.19 Stable tag: 1.4. 110 Version: 1.4. 18 Tested up to: 6.5.2 9 Stable tag: 1.4.2 10 Version: 1.4.2 11 11 License: GPLv2 or later 12 12 … … 62 62 == Changelog == 63 63 64 = 1.4.2 = 65 * Fix deprecation errors. 66 * test wp ver 6.5.2. 67 64 68 = 1.4.1 = 65 69 * Fix admin enqueue -
sharethis-follow-buttons/tags/1.4.2/sharethis-follow-buttons.php
r3002850 r3078943 4 4 * Plugin URI: https://www.sharethis.com/platform/follow-buttons-wordpress/ 5 5 * Description: Integrates the ShareThis Follow Buttons directly into your website. 6 * Version: 1.4. 16 * Version: 1.4.2 7 7 * Author: ShareThis 8 8 * Author URI: https://sharethis.com/ … … 11 11 * License: GPL v2 or later 12 12 * 13 * Copyright 202 2ShareThis13 * Copyright 2024 ShareThis 14 14 * 15 15 * This program is free software; you can redistribute it and/or modify … … 29 29 * Plugin version constant. 30 30 */ 31 const SHARETHIS_FOLLOW_BUTTONS_VERSION = '1.4. 1';31 const SHARETHIS_FOLLOW_BUTTONS_VERSION = '1.4.2'; 32 32 33 33 if ( version_compare( phpversion(), '5.3', '>=' ) ) { -
sharethis-follow-buttons/trunk/.wp-env.json
r3002827 r3078943 3 3 "." 4 4 ], 5 "phpVersion": "8. 0",5 "phpVersion": "8.2", 6 6 "port": 88, 7 7 "env": { -
sharethis-follow-buttons/trunk/php/class-follow-buttons.php
r3002827 r3078943 681 681 $screen = get_current_screen(); 682 682 683 $reset = filter_input( INPUT_GET, 'reset', FILTER_ SANITIZE_STRING);683 $reset = filter_input( INPUT_GET, 'reset', FILTER_UNSAFE_RAW ); 684 684 $reset = sanitize_text_field( wp_unslash( $reset ) ); 685 685 … … 722 722 $product = null !== $product && false !== $product ? ucfirst( $product ) : 'your'; 723 723 $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 ); 726 725 727 726 if ( false === $this->is_property_id_set() ) { -
sharethis-follow-buttons/trunk/readme.txt
r3002850 r3078943 6 6 Author: ShareThis 7 7 Requires at least: 5.9 8 Tested up to: 6. 4.19 Stable tag: 1.4. 110 Version: 1.4. 18 Tested up to: 6.5.2 9 Stable tag: 1.4.2 10 Version: 1.4.2 11 11 License: GPLv2 or later 12 12 … … 62 62 == Changelog == 63 63 64 = 1.4.2 = 65 * Fix deprecation errors. 66 * test wp ver 6.5.2. 67 64 68 = 1.4.1 = 65 69 * Fix admin enqueue -
sharethis-follow-buttons/trunk/sharethis-follow-buttons.php
r3002850 r3078943 4 4 * Plugin URI: https://www.sharethis.com/platform/follow-buttons-wordpress/ 5 5 * Description: Integrates the ShareThis Follow Buttons directly into your website. 6 * Version: 1.4. 16 * Version: 1.4.2 7 7 * Author: ShareThis 8 8 * Author URI: https://sharethis.com/ … … 11 11 * License: GPL v2 or later 12 12 * 13 * Copyright 202 2ShareThis13 * Copyright 2024 ShareThis 14 14 * 15 15 * This program is free software; you can redistribute it and/or modify … … 29 29 * Plugin version constant. 30 30 */ 31 const SHARETHIS_FOLLOW_BUTTONS_VERSION = '1.4. 1';31 const SHARETHIS_FOLLOW_BUTTONS_VERSION = '1.4.2'; 32 32 33 33 if ( version_compare( phpversion(), '5.3', '>=' ) ) {
Note: See TracChangeset
for help on using the changeset viewer.