Changeset 3428086
- Timestamp:
- 12/27/2025 06:06:00 AM (3 months ago)
- Location:
- addonify-floating-cart
- Files:
-
- 6 edited
- 1 copied
-
tags/1.2.16 (copied) (copied from addonify-floating-cart/trunk)
-
tags/1.2.16/README.txt (modified) (2 diffs)
-
tags/1.2.16/addonify-floating-cart.php (modified) (2 diffs)
-
tags/1.2.16/includes/udp/class-udp-agent.php (modified) (1 diff)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/addonify-floating-cart.php (modified) (2 diffs)
-
trunk/includes/udp/class-udp-agent.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
addonify-floating-cart/tags/1.2.16/README.txt
r3277408 r3428086 6 6 Requires PHP: 7.4 7 7 Tested up to: 6.8 8 Stable tag: 1.2.1 58 Stable tag: 1.2.16 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 132 132 == Changelog == 133 133 134 = 1.2.16 - 27 December, 2025 = 135 136 - Fixed: Unauthenticated attacker can update option value for "udp_agent_allow_tracking" via "init" hook. 137 - Tested: Up to WordPress version 6.9 138 134 139 = 1.2.15 - 20 April, 2025 = 135 140 -
addonify-floating-cart/tags/1.2.16/addonify-floating-cart.php
r3277408 r3428086 14 14 * Requires at least: 6.0.0 15 15 * Requires PHP: 7.4 16 * Tested up to: 6. 816 * Tested up to: 6.9 17 17 * Author: Addonify 18 18 * Author URI: https://addonify.com/ … … 34 34 * Rename this for your plugin and update it as you release new versions. 35 35 */ 36 define( 'ADDONIFY_FLOATING_CART_VERSION', '1.2.1 5' );36 define( 'ADDONIFY_FLOATING_CART_VERSION', '1.2.16' ); 37 37 define( 'ADDONIFY_FLOATING_CART_BASENAME', plugin_basename( __FILE__ ) ); 38 38 define( 'ADDONIFY_FLOATING_CART_PATH', plugin_dir_path( __FILE__ ) ); -
addonify-floating-cart/tags/1.2.16/includes/udp/class-udp-agent.php
r3203981 r3428086 173 173 */ 174 174 private function process_user_tracking_choice() { 175 // Check if the user is logged in and has the capability to manage options. 176 if ( ! is_user_logged_in() || ! current_user_can( 'manage_options' ) ) { 177 // Redirect to home page. 178 wp_safe_redirect( home_url() ); 179 exit; 180 } 175 181 176 182 $users_choice = isset( $_GET['udp-agent-allow-access'] ) ? sanitize_text_field( wp_unslash( $_GET['udp-agent-allow-access'] ) ) : ''; //phpcs:ignore -
addonify-floating-cart/trunk/README.txt
r3277408 r3428086 6 6 Requires PHP: 7.4 7 7 Tested up to: 6.8 8 Stable tag: 1.2.1 58 Stable tag: 1.2.16 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 132 132 == Changelog == 133 133 134 = 1.2.16 - 27 December, 2025 = 135 136 - Fixed: Unauthenticated attacker can update option value for "udp_agent_allow_tracking" via "init" hook. 137 - Tested: Up to WordPress version 6.9 138 134 139 = 1.2.15 - 20 April, 2025 = 135 140 -
addonify-floating-cart/trunk/addonify-floating-cart.php
r3277408 r3428086 14 14 * Requires at least: 6.0.0 15 15 * Requires PHP: 7.4 16 * Tested up to: 6. 816 * Tested up to: 6.9 17 17 * Author: Addonify 18 18 * Author URI: https://addonify.com/ … … 34 34 * Rename this for your plugin and update it as you release new versions. 35 35 */ 36 define( 'ADDONIFY_FLOATING_CART_VERSION', '1.2.1 5' );36 define( 'ADDONIFY_FLOATING_CART_VERSION', '1.2.16' ); 37 37 define( 'ADDONIFY_FLOATING_CART_BASENAME', plugin_basename( __FILE__ ) ); 38 38 define( 'ADDONIFY_FLOATING_CART_PATH', plugin_dir_path( __FILE__ ) ); -
addonify-floating-cart/trunk/includes/udp/class-udp-agent.php
r3203981 r3428086 173 173 */ 174 174 private function process_user_tracking_choice() { 175 // Check if the user is logged in and has the capability to manage options. 176 if ( ! is_user_logged_in() || ! current_user_can( 'manage_options' ) ) { 177 // Redirect to home page. 178 wp_safe_redirect( home_url() ); 179 exit; 180 } 175 181 176 182 $users_choice = isset( $_GET['udp-agent-allow-access'] ) ? sanitize_text_field( wp_unslash( $_GET['udp-agent-allow-access'] ) ) : ''; //phpcs:ignore
Note: See TracChangeset
for help on using the changeset viewer.